From d67db19a3c897424e4bd027e4477d9ce2a6d6ead Mon Sep 17 00:00:00 2001 From: Matthew Kennedy Date: Thu, 6 Feb 2020 16:18:35 -0800 Subject: [PATCH] Switch to GitHub hosted compiler (#1128) * test * correct path * switch to official repo * is more cores faster? * no, it isn't * try mine again * Fix path * switch to official * s --- .github/workflows/build-firmware.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-firmware.yaml b/.github/workflows/build-firmware.yaml index 5c921c624b..64f3843466 100644 --- a/.github/workflows/build-firmware.yaml +++ b/.github/workflows/build-firmware.yaml @@ -86,9 +86,9 @@ jobs: # Build machines don't have arm-none-eabi gcc, so let's download it and put it on the path - name: Download & Install GCC - run: | - 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?revision=6e63531f-8cb1-40b9-bbfc-8a57cdfc01b4&la=en&hash=F761343D43A0587E8AC0925B723C04DBFB848339' -O compiler.tar.bz2 - tar -xvf compiler.tar.bz2 + run: | # Compiler hosted on our other git repo - avoids having to download from the nice folks at ARM every time + wget 'https://github.com/rusefi/build_support/raw/master/gcc-arm-none-eabi-9-2019-q4-major-x86_64-linux.tar.xz' -O compiler.tar.xz + tar -xvf compiler.tar.xz echo "::add-path::`pwd`/gcc-arm-none-eabi-9-2019-q4-major/bin" # Make sure the compiler we just downloaded works - just print out the version