From 701c4152c1efc937b0f58249cc1273c5a64bed9e Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Thu, 3 Mar 2016 10:49:44 +0200 Subject: [PATCH] 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). --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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