|
55 | 55 | run: | |
56 | 56 | MATRIX_INCLUDE=$( |
57 | 57 | { |
58 | | - cibuildwheel --print-build-identifiers --platform linux --arch x86_64,aarch64,i686 | grep cp | jq -nRc '{"only": inputs, "os": "ubuntu-latest"}' \ |
| 58 | + cibuildwheel --print-build-identifiers --platform linux --arch all | grep cp | jq -nRc '{"only": inputs, "os": "ubuntu-latest"}' \ |
59 | 59 | && cibuildwheel --print-build-identifiers --platform macos --arch x86_64 | grep cp | jq -nRc '{"only": inputs, "os": "macos-13"}' \ |
60 | 60 | && cibuildwheel --print-build-identifiers --platform macos --arch arm64 | grep cp | jq -nRc '{"only": inputs, "os": "macos-14"}' \ |
61 | 61 | && cibuildwheel --print-build-identifiers --platform windows --arch x86,AMD64 | grep cp | jq -nRc '{"only": inputs, "os": "windows-latest"}' |
|
89 | 89 | only: ${{ matrix.only }} |
90 | 90 | env: |
91 | 91 | CIBW_BUILD_VERBOSITY: 1 |
92 | | - CIBW_MANYLINUX_X86_64_IMAGE: manylinux_2_28 |
93 | | - CIBW_MANYLINUX_PYPY_X86_64_IMAGE: manylinux_2_28 |
94 | | - CIBW_MANYLINUX_AARCH64_IMAGE: manylinux_2_28 |
95 | | - CIBW_MANYLINUX_PPC64LE_IMAGE: manylinux_2_28 |
96 | | - CIBW_MANYLINUX_S390X_IMAGE: manylinux_2_28 |
97 | | - CIBW_MANYLINUX_PYPY_AARCH64_IMAGE: manylinux_2_28 |
98 | | - CIBW_MANYLINUX_PYPY_I686_IMAGE: manylinux_2_28 |
99 | | - CIBW_MUSLLINUX_X86_64_IMAGE: musllinux_1_2 |
100 | | - CIBW_MUSLLINUX_I686_IMAGE: musllinux_1_2 |
101 | | - CIBW_MUSLLINUX_AARCH64_IMAGE: musllinux_1_2 |
102 | | - CIBW_MUSLLINUX_PPC64LE_IMAGE: musllinux_1_2 |
103 | | - CIBW_MUSLLINUX_S390X_IMAGE: musllinux_1_2 |
104 | | - CIBW_BEFORE_BUILD: bash -c "make install_libmagic" |
105 | | - CIBW_TEST_COMMAND: python -c "import magic; assert magic.Magic(mime=True).from_buffer(b'\x00\x00\x00\x1cftypisom\x00\x00\x02\x00isomiso2mp41\x00') == 'video/mp4'" |
| 92 | + CIBW_BEFORE_BUILD: bash "add_libmagic.sh" |
| 93 | + CIBW_TEST_COMMAND: python -c "import magic; assert magic.Magic(mime=True).from_buffer(b'\x00\x00\x00\x1cftypiso5\x00\x00\x00\x01isomiso5hlsf\x00\x00') == 'video/mp4'" |
106 | 94 |
|
107 | 95 | - uses: actions/upload-artifact@v4 |
108 | 96 | with: |
|
0 commit comments