diff options
author | Matt Johnston <matt@ucc.asn.au> | 2014-03-07 20:44:32 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2014-03-07 20:44:32 +0800 |
commit | 7a9ed81f5fbc3c964ef017b417d2bf28946fd392 (patch) | |
tree | 5f0e1be2ef0ec287d4734b39c4a1179148db5d26 /.travis.yml | |
parent | 12e7d570a2c853b675ad5157732a265abae295c1 (diff) |
Add Travis CI autobuilder config
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..9ebe518 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,15 @@ +language: c +compiler: + - gcc + +script: autoconf && autoheader && ./configure && make --$BUNDLEDLIBTOM-bundled-libtom CFLAGS="-O2 -Wall -Wno-pointer-sign" + +before_install: + - sudo apt-get update -qq + - sudo apt-get install -qq libz-dev + +env: + - BUNDLEDLIBTOM=enable + - BUNDLEDLIBTOM=disable + + |