diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-05-26 13:06:22 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-05-26 13:06:22 +0300 |
commit | 20aa9c8511ea1af8190260c631e0f46c4c86c2e3 (patch) | |
tree | 12384e15da02236d79011d5adab6817faf5fb42c | |
parent | f5d63bcd2387b988aa546d6cd42bc48499e505d4 (diff) | |
download | micropython-20aa9c8511ea1af8190260c631e0f46c4c86c2e3.tar.gz micropython-20aa9c8511ea1af8190260c631e0f46c4c86c2e3.zip |
.travis.yml: Install gcc-arm-none-eabi with --force-yes for now.
There appears to be issue signature problem with the PPA package we use,
so workaround it this way for now. Warning: with broken signature, there's
always a possibility that PPA was hacked and ships trojaned binaries.
-rw-r--r-- | .travis.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 6a99fdaf9b..7ae9f4952d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,7 +12,8 @@ before_script: - sudo add-apt-repository -y ppa:terry.guo/gcc-arm-embedded - sudo dpkg --add-architecture i386 - sudo apt-get update -qq || true - - sudo apt-get install -y python3 gcc-multilib gcc-arm-none-eabi pkg-config libffi-dev libffi-dev:i386 qemu-system mingw32 + - sudo apt-get install -y python3 gcc-multilib pkg-config libffi-dev libffi-dev:i386 qemu-system mingw32 + - sudo apt-get install -y --force-yes gcc-arm-none-eabi # For teensy build - sudo apt-get install realpath # For coverage testing |