|
7 | 7 | name: Build wheels on ${{ matrix.os }} |
8 | 8 | runs-on: ${{ matrix.os }} |
9 | 9 | strategy: |
| 10 | + fail-fast: false |
10 | 11 | matrix: |
11 | 12 | # os: [ubuntu-latest, ubuntu-24.04-arm, windows-latest, macos-13, macos-latest] |
12 | 13 | # os: [ubuntu-latest] |
13 | 14 | # os: [windows-2019] #latest] |
14 | 15 | # os: [macos-13] # macos-latest] |
15 | | - os: [ubuntu-latest, windows-2022, ubuntu-24.04-arm, macos-15-intel, macos-latest] |
| 16 | + #os: [ubuntu-latest, windows-2022, ubuntu-24.04-arm, macos-15-intel, macos-latest] |
| 17 | + os: [windows-2022, macos-15-intel, macos-latest] |
16 | 18 |
|
17 | 19 | steps: |
18 | 20 | - uses: actions/checkout@v4 |
@@ -43,15 +45,15 @@ jobs: |
43 | 45 | run: git submodule update --init --recursive |
44 | 46 |
|
45 | 47 | - name: Install cibuildwheel |
46 | | - run: python3 -m pip install cibuildwheel==2.23.3 |
| 48 | + run: python3 -m pip install cibuildwheel #==2.23.3 |
47 | 49 |
|
48 | 50 | - name: Build wheels |
49 | 51 | run: python3 -m cibuildwheel --output-dir wheelhouse |
50 | 52 | env: |
51 | 53 | CIBW_ENABLE: "pypy" |
52 | 54 | # Windows PyPy 3.8 build is currently failing due to https://github.com/python-cffi/cffi/issues/170 |
53 | 55 | # 32-bit builds on Windows are not supported because the MinGW-w64 does not have multilib enabled |
54 | | - CIBW_SKIP: "*-win32 pp*-win*" |
| 56 | + CIBW_SKIP: "*-win32 pp*-win* cp*t-*" |
55 | 57 | # This ensures WIN_SHELL_COMMANDS does not get defined on Windows in crossplatform.mk, which breaks deep directory creations |
56 | 58 | # since commands are executed in a UNIX-like shell expecting 'mkdir -p' |
57 | 59 | CIBW_ENVIRONMENT: "MSYSCON=y" |
|
0 commit comments