From 6b43acf558a15c2091a84d5c3db696ee2d60fa93 Mon Sep 17 00:00:00 2001 From: Tyera Eulberg Date: Fri, 24 May 2019 16:34:25 -0600 Subject: [PATCH] fix: Use xenial dist for newer lib symbols --- web3.js/.travis.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/web3.js/.travis.yml b/web3.js/.travis.yml index 5482f0b78..ae8d5622b 100644 --- a/web3.js/.travis.yml +++ b/web3.js/.travis.yml @@ -1,3 +1,4 @@ +dist: xenial sudo: required language: node_js node_js: @@ -16,12 +17,12 @@ notifications: before_install: - wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add - - - sudo apt-add-repository "deb http://apt.llvm.org/trusty/ llvm-toolchain-trusty-7 main" - - sudo apt-add-repository "deb http://ppa.launchpad.net/ubuntu-toolchain-r/test/ubuntu trusty main" + - sudo apt-add-repository "deb http://apt.llvm.org/xenial/ llvm-toolchain-xenial-7 main" + - sudo apt-add-repository "deb http://ppa.launchpad.net/ubuntu-toolchain-r/test/ubuntu xenial main" - sudo apt-get update - sudo apt-get install -y clang-7 --allow-unauthenticated - clang-7 --version - - curl https://sh.rustup.rs -sSf | sh -s -- -y + - curl https://sh.rustup.rs -sSf | sh -s -- -y - PATH=$HOME/.cargo/bin:$PATH - rustup --version