Skip to content

Commit 24915e7

Browse files
committed
fix macos x64 build
1 parent fd369ea commit 24915e7

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ jobs:
240240
strategy:
241241
fail-fast: false
242242
matrix:
243-
eventloop: ["kqueue", "dispatch_queue"]
243+
eventloop: ["kqueue"]
244244
steps:
245245
- uses: aws-actions/configure-aws-credentials@v4
246246
with:
@@ -250,7 +250,7 @@ jobs:
250250
run: |
251251
python3 -c "from urllib.request import urlretrieve; urlretrieve('${{ env.BUILDER_HOST }}/${{ env.BUILDER_SOURCE }}/${{ env.BUILDER_VERSION }}/builder.pyz?run=${{ env.RUN }}', 'builder')"
252252
chmod a+x builder
253-
./builder build -p ${{ env.PACKAGE_NAME }} --cmake-extra=-DAWS_USE_APPLE_NETWORK_FRAMEWORK=${{ matrix.eventloop == 'dispatch_queue' && 'ON' || 'OFF' }}
253+
./builder build -p ${{ env.PACKAGE_NAME }} --cmake-extra=-DAWS_USE_APPLE_NETWORK_FRAMEWORK=${{ matrix.eventloop == 'dispatch_queue' && 'ON' || 'OFF' }} --cmake-extra=-DCMAKE_NO_SYSTEM_FROM_IMPORTED=ON
254254
255255
macos-x64-s2n:
256256
runs-on: macos-15-large
@@ -265,7 +265,7 @@ jobs:
265265
run: |
266266
python3 -c "from urllib.request import urlretrieve; urlretrieve('${{ env.BUILDER_HOST }}/${{ env.BUILDER_SOURCE }}/${{ env.BUILDER_VERSION }}/builder.pyz?run=${{ env.RUN }}', 'builder')"
267267
chmod a+x builder
268-
./builder build -p ${{ env.PACKAGE_NAME }}
268+
./builder build -p ${{ env.PACKAGE_NAME }} --cmake-extra=-DCMAKE_NO_SYSTEM_FROM_IMPORTED=ON
269269
270270
localhost-test-linux:
271271
runs-on: ubuntu-24.04 # latest

0 commit comments

Comments
 (0)