]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Add more optional packages to Travis
authorTaylor Yu <catalyst@torproject.org>
Thu, 28 Jun 2018 19:43:31 +0000 (14:43 -0500)
committerTaylor Yu <catalyst@torproject.org>
Thu, 28 Jun 2018 22:25:43 +0000 (17:25 -0500)
Apparently we weren't building with either libcap or libseccomp on
Travis.  Install libcap-dev and libseccomp-dev in .travis.yml.  Closes
ticket 26560.

.travis.yml
changes/ticket26560 [new file with mode: 0644]

index f37f9a23ff3264a45d26747d15403312f85f7492..bf2887b3efd5be492035075a68258d3fee5d8d1b 100644 (file)
@@ -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 (file)
index 0000000..5b4fb1b
--- /dev/null
@@ -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.