Skip to content

Commit

Permalink
fix: macOS CI failing with python{3.7, 3.8, 3.9}
Browse files Browse the repository at this point in the history
macos-latest now points to M1 runners (macos-14-arm64) which do not
support python 3.7-3.9. For these versions, use macos-12 runner.
  • Loading branch information
wookayin committed Oct 31, 2024
1 parent 4813ce6 commit 42cc68c
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,12 @@ jobs:
exclude:
- os: 'ubuntu-latest'
python-version: '3.7'
- os: 'macos-latest'
python-version: '3.7'
- os: 'macos-latest'
python-version: '3.8'
- os: 'macos-latest'
python-version: '3.9'
include:
- os: 'ubuntu-20.04'
python-version: '3.7'
Expand All @@ -42,6 +48,12 @@ jobs:
NIGHTLY: nvim-linux64.tar.gz
NVIM_BIN_PATH: nvim-linux64/bin
EXTRACT: tar xzf
- os: 'macos-12'
python-version: '3.7'
- os: 'macos-12'
python-version: '3.8'
- os: 'macos-12'
python-version: '3.9'
- os: 'macos-latest'
NIGHTLY: nvim-macos-x86_64.tar.gz
NVIM_BIN_PATH: nvim-macos-x86_64/bin
Expand Down

0 comments on commit 42cc68c

Please sign in to comment.