From 8979bef9c4987d57874138900bbb0a080ee48604 Mon Sep 17 00:00:00 2001 From: Ben Gotow Date: Tue, 1 Jan 2019 15:25:41 -0800 Subject: [PATCH] =?UTF-8?q?Patch=20gcc-7-base=20manually,=20desired=20vers?= =?UTF-8?q?ion=20isn=E2=80=99t=20in=20the=20apt=20repo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index b0b62d186..2ebf9b596 100644 --- a/.travis.yml +++ b/.travis.yml @@ -52,7 +52,6 @@ addons: - libglib2.0-dev - libxml2-dev - uuid-dev - - gcc-7-base=7.3.0-21ubuntu1 branches: only: @@ -69,6 +68,8 @@ matrix: env: CC=clang CXX=clang++ SIGN_BUILD=true before_install: +# Patch gcc-7-base +- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install -y --force-yes -q -qq dpkg; wget http://launchpadlibrarian.net/386851587/gcc-7-base_7.3.0-29ubuntu1_amd64.deb; sudo dpkg -i ./gcc-7-base_7.3.0-29ubuntu1_amd64.deb; fi # Decrypt and uncompress code signing certs, etc. - openssl aes-256-cbc -K $encrypted_faf2708e46e2_key -iv $encrypted_faf2708e46e2_iv -in app/build/resources/certs.tar.enc -out app/build/resources/certs.tar -d;