File tree Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -10,20 +10,18 @@ jobs:
10
10
build :
11
11
strategy :
12
12
matrix :
13
- os : [ubuntu-18 .04]
13
+ os : [ubuntu-20 .04]
14
14
fail-fast : false
15
15
runs-on : ${{ matrix.os }}
16
16
name : build.py ${{ matrix.os }}
17
17
steps :
18
- - uses : actions/checkout@v2
18
+ - uses : actions/checkout@v3
19
19
with :
20
20
submodules : true
21
21
- name : Install toolchain (Ubuntu)
22
22
if : runner.os == 'Linux'
23
23
run : |
24
- sudo add-apt-repository -y ppa:team-gcc-arm-embedded/ppa
25
- sudo apt-get update -qq
26
- sudo apt-get install -y gcc-arm-embedded
24
+ sudo apt-get install -y gcc-arm-none-eabi libnewlib-arm-none-eabi
27
25
sudo apt-get install -y cmake
28
26
- name : Check Versions
29
27
run : |
35
33
cd src
36
34
make -j2
37
35
- name : Upload hex file
38
- uses : actions/upload-artifact@v1
36
+ uses : actions/upload-artifact@v3
39
37
with :
40
38
name : MICROBIT-MICROPYTHON-${{ github.sha }}.hex
41
39
path : src/MICROBIT.hex
You can’t perform that action at this time.
0 commit comments