[tor-commits] [tor/maint-0.3.1] .travis.yml to run test suite

nickm at torproject.org nickm at torproject.org
Wed Jul 26 19:39:24 UTC 2017


commit c32e6d67302a3cbee87f6c8cb88d5a6a6c28b960
Author: Patrick O'Doherty <p at trickod.com>
Date:   Sun Jul 2 14:28:52 2017 -0700

    .travis.yml to run test suite
    
    Installs dependencies (including rust) and runs the existing test suite.
    
    TODO: Introduce build matrix utilizing the rust toolchain to run test
    suites both with and without the rust components.
---
 .travis.yml | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 000000000..cd520748e
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,10 @@
+language: c
+sudo: enabled
+dist: trusty
+
+before_install:
+  - sudo apt-get -qq update
+  - sudo apt-get -y install libevent-dev libseccomp2 zlib1g-dev
+  - curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain stable
+
+script: ./autogen.sh && ./configure --disable-asciidoc && make test





More information about the tor-commits mailing list