We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f734bd6 commit 52ffffaCopy full SHA for 52ffffa
.github/workflows/ci.yml
@@ -205,6 +205,10 @@ jobs:
205
206
macos:
207
runs-on: macos-14 # latest
208
+ strategy:
209
+ fail-fast: false
210
+ matrix:
211
+ eventloop: ["kqueue", "dispatch_queue"]
212
steps:
213
- uses: aws-actions/configure-aws-credentials@v4
214
with:
@@ -214,7 +218,7 @@ jobs:
218
run: |
215
219
python3 -c "from urllib.request import urlretrieve; urlretrieve('${{ env.BUILDER_HOST }}/${{ env.BUILDER_SOURCE }}/${{ env.BUILDER_VERSION }}/builder.pyz?run=${{ env.RUN }}', 'builder')"
216
220
chmod a+x builder
217
- ./builder build -p ${{ env.PACKAGE_NAME }}
221
+ ./builder build -p ${{ env.PACKAGE_NAME }} --cmake-extra=${{ matrix.eventloop }}
222
223
macos-x64:
224
runs-on: macos-14-large # latest
0 commit comments