Skip to content

Commit

Permalink
ci: fix #2940 by removing '*' from the value of 'matrix.build'.
Browse files Browse the repository at this point in the history
  • Loading branch information
jpivarski committed Jan 12, 2024
1 parent ee63f6e commit 327b1bf
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/deploy-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,21 +63,21 @@ jobs:
matrix:
os: [ubuntu-latest, macos-latest]
arch: [auto64]
build: ["cp*", "pp*"]
build: ["cp", "pp"]

include:
- os: macos-latest
type: "Universal"
arch: universal2
build: "cp*"
build: "cp"

- os: windows-latest
arch: auto64
build: "cp*"
build: "cp"

- os: windows-latest
arch: auto32
build: "cp{38,39}-*"
build: "cp{38,39}-"

steps:
- uses: actions/checkout@v4
Expand All @@ -94,7 +94,7 @@ jobs:

- uses: pypa/cibuildwheel@v2.16.2
env:
CIBW_BUILD: ${{ matrix.build }}
CIBW_BUILD: "${{ matrix.build }}*"
CIBW_ARCHS: ${{ matrix.arch }}
with:
config-file: cibuildwheel.toml
Expand Down

0 comments on commit 327b1bf

Please sign in to comment.