浏览代码

.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.
Patrick O'Doherty 6 年之前
父节点
当前提交
c32e6d6730
共有 1 个文件被更改,包括 10 次插入0 次删除
  1. 10 0
      .travis.yml

+ 10 - 0
.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