|
11 | 11 | # `if` required because a workflow run is triggered regardless of |
12 | 12 | # the result of the previous workflow (see the documentation page) |
13 | 13 | if: ${{ github.event.workflow_run.conclusion == 'success' }} |
14 | | - needs: [test] |
15 | 14 | strategy: |
16 | 15 | fail-fast: false |
17 | 16 | matrix: |
@@ -48,15 +47,15 @@ jobs: |
48 | 47 | CIBW_ARCHS_LINUX: auto aarch64 |
49 | 48 | CIBW_ARCHS_MACOS: x86_64 arm64 universal2 |
50 | 49 | CIBW_BUILD: | |
51 | | - ${{ matrix.cp }}-manylinux_x86_64 |
52 | | - ${{ matrix.cp }}-manylinux_i686 |
53 | | - ${{ matrix.cp }}-manylinux_aarch64 |
54 | | - ${{ matrix.cp }}-win_amd64 |
55 | | - ${{ matrix.cp }}-win32 |
56 | | - ${{ matrix.cp }}-macosx_x86_64 |
57 | | - ${{ matrix.cp }}-macosx_arm64 |
58 | | - ${{ matrix.cp }}-macosx_universal2 |
59 | | - # Disabled repair wheel since the fmob lib is not compatible |
| 50 | + ${{ matrix.cp }}-manylinux_x86_64 |
| 51 | + ${{ matrix.cp }}-manylinux_i686 |
| 52 | + ${{ matrix.cp }}-manylinux_aarch64 |
| 53 | + ${{ matrix.cp }}-win_amd64 |
| 54 | + ${{ matrix.cp }}-win32 |
| 55 | + ${{ matrix.cp }}-macosx_x86_64 |
| 56 | + ${{ matrix.cp }}-macosx_arm64 |
| 57 | + ${{ matrix.cp }}-macosx_universal2 |
| 58 | + # Disabled repair wheel since the fmob lib is not compatible |
60 | 59 | CIBW_REPAIR_WHEEL_COMMAND: "" |
61 | 60 | CIBW_REPAIR_WHEEL_COMMAND_LINUX: 'mv {wheel} {dest_dir}/"$(basename {wheel} | sed "s/-linux_/-manylinux_2_17_/")"' |
62 | 61 | CIBW_TEST_REQUIRES: pytest |
|
0 commit comments