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 16dd4bd commit 72357f1Copy full SHA for 72357f1
.github/workflows/build.yml
@@ -8,14 +8,18 @@ on:
8
9
jobs:
10
build:
11
- name: Build project
12
runs-on: ubuntu-20.04
+ strategy:
13
+ matrix:
14
+ # Testing an old GCC version, a version officially supported by Mbed, and latest
15
+ gcc: ['7-2017-q4', '9-2020-q2', 'latest']
16
+ name: Build - gcc ${{ matrix.gcc }}
17
steps:
18
- uses: actions/checkout@v2
19
- name: Install GNU Arm Embedded Toolchain (arm-none-eabi-gcc)
20
uses: carlosperate/arm-none-eabi-gcc-action@v1
21
with:
- release: '10-2020-q4'
22
+ release: ${{ matrix.gcc }}
23
- name: Set up Python
24
uses: actions/setup-python@v2
25
0 commit comments