Merge pull request #68 from obnoxxx/travis

Enable travis-ci: add .travis.yml
master
Michael Adam 2016-12-24 03:01:34 +01:00 committed by GitHub
commit 67fc3b54ba
1 changed files with 18 additions and 0 deletions

18
.travis.yml Normal file
View File

@ -0,0 +1,18 @@
language: C
dist: trusty
sudo: true
before_install:
- sudo apt-get update -qq
- sudo apt-get install --assume-yes asciidoc valgrind
script:
- ./autogen.sh
- ./configure
- make
- make test
- ./configure --enable-debug --enable-transparent --enable-reverse
- make
- make test
- make valgrind-test
- make distcheck