diff options
author | Taylor Yu <catalyst@torproject.org> | 2018-06-28 14:43:31 -0500 |
---|---|---|
committer | teor <teor@torproject.org> | 2018-08-09 16:51:42 +1000 |
commit | 340da669be373174550e038d1d20ff2bff49eb6b (patch) | |
tree | 519947c174473d84b91eacc7fa4eca86b61fe53e /.travis.yml | |
parent | 27a2a6cb9b8a590a88c479539efae7bd31a4102f (diff) | |
download | tor-340da669be373174550e038d1d20ff2bff49eb6b.tar.gz tor-340da669be373174550e038d1d20ff2bff49eb6b.zip |
Add more optional packages to Travis
Apparently we weren't building with either libcap or libseccomp on
Travis. Install libcap-dev and libseccomp-dev in .travis.yml. Closes
ticket 26560.
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 6a3e1bfc01..e3735f7d58 100644 --- a/.travis.yml +++ b/.travis.yml @@ -42,11 +42,12 @@ addons: packages: ## Required dependencies - libevent-dev - - libseccomp2 - zlib1g-dev ## Optional dependencies + - libcap-dev - liblzma-dev - libscrypt-dev + - libseccomp-dev ## zstd doesn't exist in Ubuntu Trusty #- libzstd |