File tree 1 file changed +8
-5
lines changed
1 file changed +8
-5
lines changed Original file line number Diff line number Diff line change 1
- name : linux develop build "GCC with Make"
1
+ name : Build all projects with "GCC with Make"
2
2
3
3
on :
4
4
push :
10
10
build :
11
11
strategy :
12
12
matrix :
13
+ os : [ubuntu-latest, windows-2019]
13
14
project :
14
15
- cc3220sf
15
16
- efm32gg
@@ -59,17 +60,19 @@ jobs:
59
60
- tz10xx
60
61
- w7500
61
62
fail-fast : false
62
- runs-on : ubuntu-latest
63
- name : Build ${{ matrix.project }}
63
+ runs-on : ${{ matrix.os }}
64
+ name : Build ${{ matrix.project }} on ${{ matrix.os }}
64
65
steps :
65
66
- uses : actions/checkout@v3
66
67
- name : Setup Python
67
68
uses : actions/setup-python@v4
68
69
with :
69
70
python-version : 3.8
70
71
cache : pip
71
- - name : install requirements
72
- run : sudo apt-get install -y gcc-arm-none-eabi
72
+ - name : Setup arm-none-eabi-gcc
73
+ uses : carlosperate/arm-none-eabi-gcc-action@v1
74
+ with :
75
+ release : 10.3-2021.10
73
76
74
77
- name : install requirements
75
78
run : pip install -r requirements.txt
You can’t perform that action at this time.
0 commit comments