Skip to content

Commit 767a91f

Browse files
committed
fix(ci): macOS CI failing with python{3.7, 3.8, 3.9}
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.
1 parent 4813ce6 commit 767a91f

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/test.yml

+12
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,12 @@ jobs:
3232
exclude:
3333
- os: 'ubuntu-latest'
3434
python-version: '3.7'
35+
- os: 'macos-latest'
36+
python-version: '3.7'
37+
- os: 'macos-latest'
38+
python-version: '3.8'
39+
- os: 'macos-latest'
40+
python-version: '3.9'
3541
include:
3642
- os: 'ubuntu-20.04'
3743
python-version: '3.7'
@@ -42,6 +48,12 @@ jobs:
4248
NIGHTLY: nvim-linux64.tar.gz
4349
NVIM_BIN_PATH: nvim-linux64/bin
4450
EXTRACT: tar xzf
51+
- os: 'macos-12'
52+
python-version: '3.7'
53+
- os: 'macos-12'
54+
python-version: '3.8'
55+
- os: 'macos-12'
56+
python-version: '3.9'
4557
- os: 'macos-latest'
4658
NIGHTLY: nvim-macos-x86_64.tar.gz
4759
NVIM_BIN_PATH: nvim-macos-x86_64/bin

0 commit comments

Comments
 (0)