File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -10,13 +10,17 @@ jobs:
1010 build-py-script :
1111 strategy :
1212 matrix :
13- os : [ubuntu-22.04, macos-13, windows-2022]
13+ # macos-13 is Intel and macos-15 is arm64
14+ os : [ubuntu-22.04, macos-13, macos-15, windows-2022]
1415 gcc : ['6-2016-q4', 'latest'] # Min version 6.2 as used in pext/yotta:latest docker image
1516 cmake : ['3.6.0', ''] # Empty string installs the latest CMake release
1617 exclude :
1718 # This old version of CMake does not run in Ubuntu 22.04
1819 - os : ubuntu-22.04
1920 cmake : ' 3.6.0'
21+ # Intel macOS cannot run the latest gcc (which is arm64 only)
22+ - os : macos-13
23+ gcc : ' latest'
2024 fail-fast : false
2125 runs-on : ${{ matrix.os }}
2226 name : ${{ matrix.os }}, gcc ${{ matrix.gcc }}, cmake ${{ matrix.cmake || 'latest'}}
You can’t perform that action at this time.
0 commit comments