Skip to content

Commit 52ffffa

Browse files
committed
add dispatch queue job for macos
1 parent f734bd6 commit 52ffffa

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,10 @@ jobs:
205205
206206
macos:
207207
runs-on: macos-14 # latest
208+
strategy:
209+
fail-fast: false
210+
matrix:
211+
eventloop: ["kqueue", "dispatch_queue"]
208212
steps:
209213
- uses: aws-actions/configure-aws-credentials@v4
210214
with:
@@ -214,7 +218,7 @@ jobs:
214218
run: |
215219
python3 -c "from urllib.request import urlretrieve; urlretrieve('${{ env.BUILDER_HOST }}/${{ env.BUILDER_SOURCE }}/${{ env.BUILDER_VERSION }}/builder.pyz?run=${{ env.RUN }}', 'builder')"
216220
chmod a+x builder
217-
./builder build -p ${{ env.PACKAGE_NAME }}
221+
./builder build -p ${{ env.PACKAGE_NAME }} --cmake-extra=${{ matrix.eventloop }}
218222
219223
macos-x64:
220224
runs-on: macos-14-large # latest

0 commit comments

Comments
 (0)