Skip to content

Commit

Permalink
Try a different combination
Browse files Browse the repository at this point in the history
  • Loading branch information
mrmundt committed Oct 11, 2023
1 parent ddb8eb0 commit 786dc93
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions .github/workflows/release_wheel_creation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ env:

jobs:
native_wheels:
name: Build wheels (${{ matrix.wheel-version }}) on ${{ matrix.os }} for native architecture
name: Build wheels (${{ matrix.wheel-version }}) on ${{ matrix.os }} for native and cross-compiled architecture
runs-on: ${{ matrix.os }}
strategy:
matrix:
Expand All @@ -34,8 +34,8 @@ jobs:
output-dir: dist
env:
CIBW_ARCHS_LINUX: "native"
CIBW_ARCHS_MACOS: "native"
CIBW_ARCHS_WINDOWS: "native"
CIBW_ARCHS_MACOS: "native arm64"
CIBW_ARCHS_WINDOWS: "native ARM64"
CIBW_SKIP: "*-musllinux*"
CIBW_BUILD: ${{ matrix.wheel-version }}
CIBW_BUILD_VERBOSITY: 1
Expand All @@ -47,11 +47,11 @@ jobs:
path: dist/*.whl

alternative_wheels:
name: Build wheels (${{ matrix.wheel-version }}) on ${{ matrix.os }} for alternative architecture
name: Build wheels (${{ matrix.wheel-version }}) on ${{ matrix.os }} for aarch64
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04, windows-latest, macos-latest]
os: [ubuntu-22.04]
arch: [all]
wheel-version: ['cp38*', 'cp39*', 'cp310*', 'cp311*']
steps:
Expand All @@ -67,8 +67,6 @@ jobs:
output-dir: dist
env:
CIBW_ARCHS_LINUX: "aarch64"
CIBW_ARCHS_MACOS: "arm64"
CIBW_ARCHS_WINDOWS: "ARM64"
CIBW_SKIP: "*-musllinux*"
CIBW_BUILD: ${{ matrix.wheel-version }}
CIBW_BUILD_VERBOSITY: 1
Expand Down

0 comments on commit 786dc93

Please sign in to comment.