.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.
This commit is contained in:
Patrick O'Doherty 2017-07-02 14:28:52 -07:00 committed by Isis Lovecruft
parent 52c1754ff6
commit c32e6d6730
No known key found for this signature in database
GPG Key ID: C8E8B1AA4CF3844E
1 changed files with 10 additions and 0 deletions

10
.travis.yml Normal file
View File

@ -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