Skip to content

Commit

Permalink
chore(actions): fdo NOT build arm64 on python3.8 and earlier
Browse files Browse the repository at this point in the history
  • Loading branch information
doublethefish committed Nov 28, 2024
1 parent 8d8b21f commit 0f5daf3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@ jobs:
| jq -nRc '{"only": inputs, "os": "windows-latest"}'
} | jq -sc
)
echo "include=$MATRIX" >> $GITHUB_OUTPUT
# Filter out arm64 builds for Python 3.8 and earlier
FILTERED_MATRIX=$(echo "$MATRIX" | jq '[.[] | select(.identifier != null) | select((.identifier | contains("arm64")) | not or (.identifier | test("cp3[678]") | not))]')
echo "include=$FILTERED_MATRIX" >> $GITHUB_OUTPUT
build_wheels:
name: Build ${{ matrix.only }}
Expand Down

0 comments on commit 0f5daf3

Please sign in to comment.