Skip to content

Commit bae5d3a

Browse files
tanclaude
andcommitted
fix: CI release — arm64-linux lite-only (ONNX cross-compile fails), fail-fast: false
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent fa0fae1 commit bae5d3a

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

.github/workflows/release-binary.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ permissions:
1111
jobs:
1212
build:
1313
strategy:
14+
fail-fast: false
1415
matrix:
1516
include:
1617
- target: aarch64-apple-darwin
@@ -26,6 +27,7 @@ jobs:
2627
os: ubuntu-latest
2728
suffix: linux-arm64
2829
cross: true
30+
lite_only: true
2931

3032
runs-on: ${{ matrix.os }}
3133
steps:
@@ -44,6 +46,7 @@ jobs:
4446
run: cargo install cross --git https://github.com/cross-rs/cross
4547

4648
- name: Build full version
49+
if: ${{ !matrix.lite_only }}
4750
run: |
4851
if [ "${{ matrix.cross }}" = "true" ]; then
4952
cross build --release --target ${{ matrix.target }} -p cortex-mcp-server
@@ -52,6 +55,7 @@ jobs:
5255
fi
5356
5457
- name: Package full version
58+
if: ${{ !matrix.lite_only }}
5559
run: |
5660
mkdir -p dist
5761
cp target/${{ matrix.target }}/release/cortex-mcp-server dist/

0 commit comments

Comments
 (0)