Skip to content

Commit

Permalink
ci: fix qemu
Browse files Browse the repository at this point in the history
  • Loading branch information
markokr committed Aug 25, 2023
1 parent 815a29f commit 58c8da7
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
- {os: "ubuntu-latest", osname: "Linux", PY: "3.9", TOXENV: "py39", arch: "x64"}
- {os: "ubuntu-latest", osname: "Linux", PY: "3.10", TOXENV: "py310", arch: "x64"}
- {os: "ubuntu-latest", osname: "Linux", PY: "3.11", TOXENV: "py311", arch: "x64"}
- {os: "ubuntu-latest", osname: "Linux", PY: "3.12", TOXENV: "py312", arch: "x64"}
#- {os: "ubuntu-latest", osname: "Linux", PY: "3.12", TOXENV: "py312", arch: "x64"}
- {os: "macos-latest", osname: "MacOS", PY: "3.10", TOXENV: "py310", arch: "x64"}
- {os: "macos-latest", osname: "MacOS", PY: "3.11", TOXENV: "py311", arch: "x64"}
- {os: "windows-latest", osname: "Windows", PY: "3.10", TOXENV: "py310", arch: "x64"}
Expand Down Expand Up @@ -163,13 +163,18 @@ jobs:
- {os: "windows-latest", name: "Windows"}
steps:
- uses: actions/checkout@v3
- name: Set up QEMU
if: runner.os == "Linux"
uses: docker/setup-qemu-action@v2
with:
platforms: all
- uses: pypa/[email protected]
env:
CIBW_ARCHS_MACOS: "x86_64 arm64 universal2"
CIBW_ARCHS_WINDOWS: "auto"
CIBW_ARCHS_LINUX: "auto aarch64"
CIBW_BUILD: "cp37-* pp*"
CIBW_SKIP: "pp37-* pp*aarch64 pp*i686"
CIBW_ARCHS_LINUX: "auto aarch64 ppc64le s390x"
CIBW_BUILD: "cp37-* pp*linux*x86_64"
CIBW_SKIP: "pp37-*"
- name: "Check"
shell: bash
run: |
Expand Down

0 comments on commit 58c8da7

Please sign in to comment.