commit 1da66d6c7e7cc05ba7dfd703a465c4664d940cb1 from: Jelmer Vernooij date: Mon Jun 17 19:01:59 2024 UTC Split wheels build, to avoid timeouts commit - 74aab826e4feed2207c025353d2722eeaf949cf7 commit + 1da66d6c7e7cc05ba7dfd703a465c4664d940cb1 blob - 7cf982eca62383b92f7eb95b295c01def27a8708 blob + 3f0c3dc347843f5b492b2bff89ed8ad46b892018 --- .github/workflows/python-distributions.yml +++ .github/workflows/python-distributions.yml @@ -12,6 +12,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] + python-prefix: [pp, cp] fail-fast: true steps: @@ -37,10 +38,12 @@ jobs: if: "matrix.os == 'ubuntu-latest'" - name: Build wheels run: python -m cibuildwheel --output-dir wheelhouse + env: + CIBW_BUILD: "${{ matrix.python-prefix }}*" - name: Upload wheels uses: actions/upload-artifact@v4 with: - name: artifact-${{ matrix.os }} + name: artifact-${{ matrix.os }}-${{ matrix.python-prefix }} path: ./wheelhouse/*.whl build-sdist: