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 206782f commit c111289Copy full SHA for c111289
.github/workflows/wheels.yml
@@ -37,7 +37,16 @@ jobs:
37
strategy:
38
fail-fast: false
39
matrix:
40
- os: [macos-13]
+ name: [ "macOS (x86_64)", "iOS"]
41
+ include:
42
+ - name: macOS (x86_64)
43
+ platform: macos
44
+ runs-on: macos-13
45
+ archs: auto
46
+ - name: iOS
47
+ platform: ios
48
+ runs-on: macos-latest
49
50
51
steps:
52
- uses: actions/checkout@v4
@@ -54,9 +63,11 @@ jobs:
54
63
- name: Build wheels
55
64
run: python -m cibuildwheel
56
65
env:
57
- CIBW_PLATFORM: "ios"
58
- CIBW_ARCHS: "auto"
66
+ CIBW_PLATFORM: ${{ matrix.platform }}
67
+ CIBW_ARCHS: ${{ matrix.archs }}
59
68
CIBW_BUILD: "cp313*"
69
+ CIBW_BUILD_VERBOSITY: 1
70
+
60
71
61
72
- name: Verify clean directory
62
73
run: git diff --exit-code
0 commit comments