Skip to content

Commit

Permalink
matrixify py version
Browse files Browse the repository at this point in the history
  • Loading branch information
carderne committed Jul 31, 2024
1 parent 81a12f2 commit 66ab7e2
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,12 @@ on:

jobs:
make-wheels:
name: Build wheels ${{ matrix.os }} ${{ matrix.cibw_arch }}
name: Build wheels ${{ matrix.os }} ${{ matrix.py }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ["macos-14", "ubuntu-latest", "windows-latest"]
py: ["cp39", "cp310", "cp311", "cp312"]
fail-fast: true

steps:
Expand All @@ -18,10 +19,10 @@ jobs:
- name: "Build wheels"
uses: pypa/cibuildwheel@v2.19.2
env:
CIBW_ARCHS: native
CIBW_BUILD: "cp39-* cp310-* cp311-* cp312-*"
CIBW_SKIP: pp*
CIBW_BUILD_FRONTEND: build
CIBW_ARCHS: "native"
CIBW_BUILD: "${{ matrix.py }}-*"
CIBW_SKIP: "pp*"
CIBW_BUILD_FRONTEND: "build"

- name: "Upload wheel as artifact"
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 66ab7e2

Please sign in to comment.