Skip to content

Commit

Permalink
[.github] Run optional tests on x86 macOS
Browse files Browse the repository at this point in the history
arm64 macOS does not have these older versions.
  • Loading branch information
sideeffect42 committed Oct 17, 2024
1 parent f25535d commit 237d65b
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 16 deletions.
15 changes: 7 additions & 8 deletions .github/workflows/test-build-optional.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,10 @@ jobs:
fail-fast: false
matrix:
os:
- ubuntu
- macos
- ubuntu-latest
- macos-13
python-version:
- 3.6
- pypy-3.6
- pypy-3.7
- pypy-3.8
Expand All @@ -23,12 +24,10 @@ jobs:
- graalpy-23.1.2
- graalpy-24.1.1
include:
- {os: "macos", python-version: "3.5"}
- {os: "macos", python-version: "3.6"}
exclude:
- {os: "macos", python-version: "pypy-3.6"}
- {os: "macos", python-version: "pypy-3.9"}
runs-on: ${{ matrix.os }}-latest
- {os: "ubuntu-latest", python-version: "3.3"}
- {os: "ubuntu-latest", python-version: "3.4"}
- {os: "ubuntu-latest", python-version: "3.5"}
runs-on: ${{ matrix.os }}
steps:
- name: Check out repository code
uses: actions/checkout@v4
Expand Down
15 changes: 7 additions & 8 deletions .github/workflows/test-unit-optional.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,10 @@ jobs:
fail-fast: false
matrix:
os:
- ubuntu
- macos
- ubuntu-latest
- macos-13
python-version:
- 3.6
- pypy-3.6
- pypy-3.7
- pypy-3.8
Expand All @@ -22,12 +23,10 @@ jobs:
- graalpy-23.1.2
- graalpy-24.1.1
include:
- {os: "macos", python-version: "3.5"}
- {os: "macos", python-version: "3.6"}
exclude:
- {os: "macos", python-version: "pypy-3.6"}
- {os: "macos", python-version: "pypy-3.9"}
runs-on: ${{ matrix.os }}-latest
- {os: "ubuntu-latest", python-version: "3.3"}
- {os: "ubuntu-latest", python-version: "3.4"}
- {os: "ubuntu-latest", python-version: "3.5"}
runs-on: ${{ matrix.os }}
steps:
- name: Check out repository code
uses: actions/checkout@v4
Expand Down

0 comments on commit 237d65b

Please sign in to comment.