diff options
author | 2020-08-04 19:28:11 +0000 | |
---|---|---|
committer | 2020-08-04 19:28:11 +0000 | |
commit | 1149293a651bc15ac34ff48576a5e30fdc9b48e0 (patch) | |
tree | 1c70392f58d410c08a41bb1fb299ef37198f0e4b | |
parent | 1a1b55c27a17f271672a1a768c9ceaa9294f9441 (diff) | |
parent | da246f6092bc21b0948e02e1bb816baf33b54c8d (diff) | |
download | cortex-m-1149293a651bc15ac34ff48576a5e30fdc9b48e0.tar.gz cortex-m-1149293a651bc15ac34ff48576a5e30fdc9b48e0.tar.zst cortex-m-1149293a651bc15ac34ff48576a5e30fdc9b48e0.zip |
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 <daniel@eggers-club.de>
-rw-r--r-- | cortex-m-rt/.github/workflows/ci.yml | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/cortex-m-rt/.github/workflows/ci.yml b/cortex-m-rt/.github/workflows/ci.yml index 6905827..4e4cda7 100644 --- a/cortex-m-rt/.github/workflows/ci.yml +++ b/cortex-m-rt/.github/workflows/ci.yml @@ -7,7 +7,7 @@ name: Continuous integration jobs: ci-linux: - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 strategy: matrix: # All generated code should be running on stable now @@ -22,9 +22,6 @@ jobs: experimental: true steps: - - uses: fiam/arm-none-eabi-gcc@v1 - with: - release: '7-2018-q2' - uses: actions/checkout@v2 - uses: actions-rs/toolchain@v1 with: @@ -33,7 +30,7 @@ jobs: target: ${{ matrix.TARGET }} override: true components: rustfmt - - name: Install qemu - run: sudo apt-get install qemu-system-arm + - name: Install qemu and gcc + run: sudo apt-get update && sudo apt-get install qemu-system-arm gcc-arm-none-eabi - name: Run CI script for ${{ matrix.TARGET }} under ${{ matrix.rust }} run: TARGET=${{ matrix.TARGET }} TRAVIS_RUST_VERSION=${{ matrix.rust }} bash ci/script.sh |