Skip to content

Commit

Permalink
try ommitting archs
Browse files Browse the repository at this point in the history
  • Loading branch information
jdidion committed Sep 12, 2023
1 parent 9923e69 commit 327e3d4
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@ on:

jobs:
build_wheels:
name: Build wheels for ${{ matrix.os }}-${{ matrix.python }}
name: Build wheels for ${{ matrix.cibw_build }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
python: ["cp38-* cp39-* cp310-* cp311-*"]
include:
- os: ubuntu-latest
cibw_archs: "x86_64 aarch64"
- os: macos-latest
cibw_archs: "x86_64 arm64"
cibw_build: ["cp38-*", "cp39-*", "cp310-*", "cp311-*"]
#include:
# - os: ubuntu-latest
# cibw_archs: "x86_64 aarch64"
# - os: macos-latest
# cibw_archs: "x86_64 arm64"

steps:
- uses: actions/checkout@v4
Expand All @@ -34,8 +34,9 @@ jobs:
- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
env:
CIBW_ARCHS: ${{ matrix.cibw_archs }}
CIBW_BUILD: ${{ matrix.python }}
#CIBW_ARCHS: ${{ matrix.cibw_archs }}
CIBW_BUILD: ${{ matrix.cibw_build }}
CIBW_SKIP: "*ppc64le *s390x *i686 *win32"
CIBW_BUILD_VERBOSITY: 1

- uses: actions/upload-artifact@v3
Expand Down

0 comments on commit 327e3d4

Please sign in to comment.