summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTaylor Yu <catalyst@torproject.org>2018-06-28 14:43:31 -0500
committerteor <teor@torproject.org>2018-08-09 16:51:42 +1000
commit340da669be373174550e038d1d20ff2bff49eb6b (patch)
tree519947c174473d84b91eacc7fa4eca86b61fe53e
parent27a2a6cb9b8a590a88c479539efae7bd31a4102f (diff)
downloadtor-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.
-rw-r--r--.travis.yml3
-rw-r--r--changes/ticket265603
2 files changed, 5 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
diff --git a/changes/ticket26560 b/changes/ticket26560
new file mode 100644
index 0000000000..5b4fb1bfe7
--- /dev/null
+++ b/changes/ticket26560
@@ -0,0 +1,3 @@
+ o Minor features (continuous integration):
+ - Install libcap-dev and libseccomp2-dev so these optional
+ dependencies get tested on Travis CI. Closes ticket 26560.