Skip to content

Commit a579aaa

Browse files
CI: Updates due to latest arm compiler not supporting Intel Mac.
1 parent a223392 commit a579aaa

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,16 @@ jobs:
1010
build-microbit-v2-samples:
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 doesn't run un Ubuntu 22.04
1819
- os: ubuntu-22.04
1920
cmake: '3.6.0'
21+
- os: macos-13
22+
gcc: 'latest'
2023
fail-fast: false
2124
runs-on: ${{ matrix.os }}
2225
name: ${{ matrix.os }}, gcc ${{ matrix.gcc }}, cmake ${{ matrix.cmake || 'latest'}}

0 commit comments

Comments
 (0)