diff options
| author | Jeff Epler <jepler@gmail.com> | 2019-11-20 09:38:17 -0600 |
|---|---|---|
| committer | Jeff Epler <jepler@gmail.com> | 2019-11-22 14:17:11 -0600 |
| commit | eb44b2bb26ba4578ca97e459c9baa69d549c40a5 (patch) | |
| tree | 8994a0c6e5580a1f0e0c6798ef4f45801534c3ac | |
| parent | c000567d880b054ca9ed0e9f96ee474451e92e3c (diff) | |
build.yml: Use a newer build toolchain
.. the new version is not offered in .deb form, so the installation
process also changes
| -rw-r--r-- | .github/workflows/build.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1d5793573..e34a2e10c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -168,7 +168,8 @@ jobs: run: | sudo apt-get install -y gettext pip install requests sh click setuptools awscli - wget https://s3.amazonaws.com/adafruit-circuit-python/gcc-arm-embedded_7-2018q2-1~xenial1_amd64.deb && sudo dpkg -i gcc-arm-embedded*_amd64.deb + wget https://developer.arm.com/-/media/Files/downloads/gnu-rm/9-2019q4/RC2.1/gcc-arm-none-eabi-9-2019-q4-major-x86_64-linux.tar.bz2 + sudo tar -C /usr --strip-components=1 -xaf gcc-arm-none-eabi-9-2019-q4-major-x86_64-linux.tar.bz2 - name: Versions run: | gcc --version |
