diff options
author | Tom Callaway <spot@fedoraproject.org> | 2020-09-12 04:28:27 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-12 09:28:27 +0100 |
commit | d7d08595e2c354d4c7245e3986ceed353d336ff5 (patch) | |
tree | c1eef504b90226110f95e15ee1ebc4d49e283f8a /.travis.yml | |
parent | 83f682385543d949e4ee5e1271a96beddaa9a23b (diff) | |
download | libfuse-d7d08595e2c354d4c7245e3986ceed353d336ff5.tar.gz |
Update Travis to Ubuntu Bionic
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 48a92ff..bcee2f2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,16 +1,19 @@ sudo: required dist: bionic +before_install: + - curl https://spot.fedorapeople.org/spotfoss-ppa.key | sudo apt-key add - + - wget https://launchpad.net/~spotfoss/+archive/ubuntu/ppa/+files/valgrind_3.16.1-2_amd64.deb + - sudo apt install ./valgrind_3.16.1-2_amd64.deb language: - c - c++ addons: apt: sources: - - ubuntu-toolchain-r-test + - sourceline: 'ppa:ubuntu-toolchain-r/test' packages: - doxygen - - valgrind - clang - libstdc++-7-dev - libstdc++-10-dev |