Skip to content

Commit 1149293

Browse files
Merge #284
284: Bump Ubuntu to 20.04 and install gcc-arm-none-eabi r=adamgreig a=therealprof ... instead of relying on overcrowded ARM servers Co-authored-by: Daniel Egger <[email protected]>
2 parents 1a1b55c + da246f6 commit 1149293

File tree

1 file changed

+3
-6
lines changed
  • cortex-m-rt/.github/workflows

1 file changed

+3
-6
lines changed

cortex-m-rt/.github/workflows/ci.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name: Continuous integration
77

88
jobs:
99
ci-linux:
10-
runs-on: ubuntu-latest
10+
runs-on: ubuntu-20.04
1111
strategy:
1212
matrix:
1313
# All generated code should be running on stable now
@@ -22,9 +22,6 @@ jobs:
2222
experimental: true
2323

2424
steps:
25-
- uses: fiam/arm-none-eabi-gcc@v1
26-
with:
27-
release: '7-2018-q2'
2825
- uses: actions/checkout@v2
2926
- uses: actions-rs/toolchain@v1
3027
with:
@@ -33,7 +30,7 @@ jobs:
3330
target: ${{ matrix.TARGET }}
3431
override: true
3532
components: rustfmt
36-
- name: Install qemu
37-
run: sudo apt-get install qemu-system-arm
33+
- name: Install qemu and gcc
34+
run: sudo apt-get update && sudo apt-get install qemu-system-arm gcc-arm-none-eabi
3835
- name: Run CI script for ${{ matrix.TARGET }} under ${{ matrix.rust }}
3936
run: TARGET=${{ matrix.TARGET }} TRAVIS_RUST_VERSION=${{ matrix.rust }} bash ci/script.sh

0 commit comments

Comments
 (0)