Skip to content

Commit c111289

Browse files
authored
added verbose output, added macos and ios, ios on macos-latest instead macos-13
1 parent 206782f commit c111289

File tree

1 file changed

+14
-3
lines changed

1 file changed

+14
-3
lines changed

.github/workflows/wheels.yml

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,16 @@ jobs:
3737
strategy:
3838
fail-fast: false
3939
matrix:
40-
os: [macos-13]
40+
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+
archs: auto
4150

4251
steps:
4352
- uses: actions/checkout@v4
@@ -54,9 +63,11 @@ jobs:
5463
- name: Build wheels
5564
run: python -m cibuildwheel
5665
env:
57-
CIBW_PLATFORM: "ios"
58-
CIBW_ARCHS: "auto"
66+
CIBW_PLATFORM: ${{ matrix.platform }}
67+
CIBW_ARCHS: ${{ matrix.archs }}
5968
CIBW_BUILD: "cp313*"
69+
CIBW_BUILD_VERBOSITY: 1
70+
6071

6172
- name: Verify clean directory
6273
run: git diff --exit-code

0 commit comments

Comments
 (0)