Skip to content

Commit 4462983

Browse files
CI: Updates due to latest arm compiler not supporting Intel Mac.
1 parent 7b7936d commit 4462983

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff 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'}}

0 commit comments

Comments
 (0)