Skip to content

Commit

Permalink
FIX: 3.8 aarch64 skip for PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
larsoner committed Jun 5, 2024
1 parent 18bac95 commit 430e9e2
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/cibuildwheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,12 @@ jobs:
- name: Build just oldest and newest on PRs, all on tags
shell: bash
# - Always omit musl 3.8 b/c NumPy does not provide wheels for it
# - Omit musllinux on PRs (slow)
# - Omit musllinux_aarch64 because it's slow and niche
# - Always omit musllinux_aarch64 because it's slow and niche
# - On PPs, omit musllinux for speed
# - On PRs, run just oldest and newest Python versions (and omit 3.8 aarch64)
run: |
if [[ "${{ github.event_name }}" == "pull_request" ]]; then
CIBW_SKIP="pp* cp36-* cp37-* cp38-musllinux* cp39-* cp310-* cp311-* *musllinux*"
CIBW_SKIP="pp* cp36-* cp37-* cp38-musllinux* cp39-* cp310-* cp311-* cp38-*-aarch64 *musllinux*"
else
CIBW_SKIP="pp* cp36-* cp37-* cp38-musllinux* *musllinux_aarch64"
fi
Expand Down

0 comments on commit 430e9e2

Please sign in to comment.