From dffb9cc0bad59b846c4bcf207212d531fd713d7b Mon Sep 17 00:00:00 2001 From: Josh Meyers Date: Mon, 29 Apr 2024 11:48:31 -0700 Subject: [PATCH] clarify archs --- .github/workflows/wheeltest.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/wheeltest.yml b/.github/workflows/wheeltest.yml index 602bed40..14545710 100644 --- a/.github/workflows/wheeltest.yml +++ b/.github/workflows/wheeltest.yml @@ -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 @@ -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 @@ -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* @@ -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 @@ -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* @@ -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 @@ -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*