diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-03-03 10:49:44 +0200 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-03-03 11:06:36 +0200 |
commit | 701c4152c1efc937b0f58249cc1273c5a64bed9e (patch) | |
tree | 19efec0a17b4aa3e710b309e9f251bd053f42501 | |
parent | 02ea74d8f57009040ea2a268b1080e72ded286bf (diff) | |
download | micropython-701c4152c1efc937b0f58249cc1273c5a64bed9e.tar.gz micropython-701c4152c1efc937b0f58249cc1273c5a64bed9e.zip |
tarvis: Unbreak build by ignoring lack of i386 arch in some repos.
For some reason, Travis now has Google Chrome PPA included in the builder
image, that lacks i386 arch, that leads to apt-get update error. So, ignore
it (this is not ideal as may lead to actual repo update failures to be missed,
leading to installation of old package, leading to weird errors; let's keep
that in mind).
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 12afc39181..6a99fdaf9b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,7 +11,7 @@ before_script: # - sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test - sudo add-apt-repository -y ppa:terry.guo/gcc-arm-embedded - sudo dpkg --add-architecture i386 - - sudo apt-get update -qq + - 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 # For teensy build - sudo apt-get install realpath |