Exclude macOS builds rather than include

This commit is contained in:
Andrew Murray 2022-03-30 18:39:13 +11:00
parent 1d53ac8b1d
commit 19dd635918

View File

@ -21,15 +21,15 @@ jobs:
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
python: [ "3.8", "3.9", "3.10" ] python: [ "3.7", "3.8", "3.9", "3.10", "pypy3.7-7.3.8", "pypy3.8-7.3.8" ]
platform: [ "arm64", "x86_64" ] platform: [ "arm64", "x86_64" ]
include: exclude:
- python: "3.7" - python: "3.7"
platform: "x86_64" platform: "arm64"
- python: "pypy3.7-7.3.8" - python: "pypy3.7-7.3.8"
platform: "x86_64" platform: "arm64"
- python: "pypy3.8-7.3.8" - python: "pypy3.8-7.3.8"
platform: "x86_64" platform: "arm64"
env: env:
BUILD_COMMIT: ${{ inputs.build-commit }} BUILD_COMMIT: ${{ inputs.build-commit }}
PLAT: ${{ matrix.platform }} PLAT: ${{ matrix.platform }}