Skip to content

Commit

Permalink
clarify archs
Browse files Browse the repository at this point in the history
  • Loading branch information
jmeyers314 committed Apr 29, 2024
1 parent 7221711 commit dffb9cc
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/wheeltest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:

jobs:
build_many_wheels:
name: Build wheels on standard linux
name: Standard linux
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -35,7 +35,7 @@ jobs:
path: ./wheelhouse/*.whl

build_musl_wheels:
name: Build wheels on musl linux
name: Musl linux
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -50,7 +50,7 @@ jobs:
- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
env:
CIBW_ARCHS: "x86_64 aarch64"
CIBW_ARCHS: "x86_64"
CIBW_BUILD: "*musllinux*"
# CIBW_SKIP: cp36* cp37* pp*
CIBW_SKIP: cp36* cp37* cp38* cp39* cp310* cp311* pp*
Expand All @@ -66,7 +66,7 @@ jobs:

# X86 Mac OS
build_macosx_x86_wheels:
name: Build wheels on macosx
name: MacOS x86
runs-on: macos-13
steps:
- uses: actions/checkout@v4
Expand All @@ -81,6 +81,7 @@ jobs:
- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
env:
CIBW_ARCHS: "x86_64"
CIBW_BUILD: "*macosx*"
# CIBW_SKIP: cp36* cp37* pp*
CIBW_SKIP: cp36* cp37* cp38* cp39* cp310* cp311* pp*
Expand All @@ -96,7 +97,7 @@ jobs:

# ARM Mac OS
build_macosx_arm_wheels:
name: Build wheels on macosx
name: MacOS ARM
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -111,6 +112,7 @@ jobs:
- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
env:
CIBW_ARCHS: "aarch64"
CIBW_BUILD: "*macosx*"
# CIBW_SKIP: cp36* cp37* pp*
CIBW_SKIP: cp36* cp37* cp38* cp39* cp310* cp311* pp*
Expand Down

0 comments on commit dffb9cc

Please sign in to comment.