We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a223392 commit a579aaaCopy full SHA for a579aaa
.github/workflows/build.yml
@@ -10,13 +10,16 @@ jobs:
10
build-microbit-v2-samples:
11
strategy:
12
matrix:
13
- os: [ubuntu-22.04, macos-13, windows-2022]
+ # macos-13 is Intel and macos-15 is arm64
14
+ os: [ubuntu-22.04, macos-13, macos-15, windows-2022]
15
gcc: ['6-2016-q4', 'latest'] # Min version 6.2 as used in pext/yotta:latest docker image
16
cmake: ['3.6.0', ''] # Empty string installs the latest CMake release
17
exclude:
18
# This old version of CMake doesn't run un Ubuntu 22.04
19
- os: ubuntu-22.04
20
cmake: '3.6.0'
21
+ - os: macos-13
22
+ gcc: 'latest'
23
fail-fast: false
24
runs-on: ${{ matrix.os }}
25
name: ${{ matrix.os }}, gcc ${{ matrix.gcc }}, cmake ${{ matrix.cmake || 'latest'}}
0 commit comments