Skip to content

Commit d8851c5

Browse files
committed
Avoid building non-x86 binaries before running dispatch test
1 parent bb82d9f commit d8851c5

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

.github/workflows/linux-precompiled-bin-workflow.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ on:
88
type: boolean
99
required: true
1010
default: false
11+
x86_64Only:
12+
type: boolean
13+
required: false
14+
default: false
1115

1216
env:
1317
PIP_BREAK_SYSTEM_PACKAGES: 1
@@ -53,6 +57,7 @@ jobs:
5357
path: kuzu_cli-linux-x86_64.tar.gz
5458

5559
build-precompiled-bin-aarch64:
60+
if: ${{ github.event.inputs.x86_64Only != 'true' }}
5661
runs-on: kuzu-self-hosted-linux-building-aarch64
5762
steps:
5863
- uses: actions/checkout@v4
@@ -92,6 +97,7 @@ jobs:
9297
path: kuzu_cli-linux-aarch64.tar.gz
9398

9499
build-precompiled-bin-android-armv8a:
100+
if: ${{ github.event.inputs.x86_64Only != 'true' }}
95101
runs-on: kuzu-self-hosted-testing
96102
steps:
97103
- uses: actions/checkout@v4

.github/workflows/simsimd-dispatch-test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ jobs:
1515
uses: ./.github/workflows/linux-precompiled-bin-workflow.yml
1616
with:
1717
isNightly: true
18+
x86_64Only: true
1819
secrets: inherit
1920

2021
simsimd-dispatch-test:

0 commit comments

Comments
 (0)