diff options
author | Taylor Yu <catalyst@torproject.org> | 2018-06-28 14:43:31 -0500 |
---|---|---|
committer | Taylor Yu <catalyst@torproject.org> | 2018-06-28 17:25:43 -0500 |
commit | f028713d37053ca4e56b194e7ff7e682e8ef7d37 (patch) | |
tree | 1c9dda0df98930137b62b951c687e8abfe50fe9a /.travis.yml | |
parent | be40ad51b68fa87bafb88e55db7856d373274a4d (diff) | |
download | tor-f028713d37053ca4e56b194e7ff7e682e8ef7d37.tar.gz tor-f028713d37053ca4e56b194e7ff7e682e8ef7d37.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 f37f9a23ff..bf2887b3ef 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 |