Skip to content

Commit

Permalink
.travis.yml to run test suite
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
patrickod authored and isislovecruft committed Jul 13, 2017
1 parent b47249e commit 071e9b5
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 071e9b5

Please sign in to comment.