From 211170822f69d48f3bd5260ca29ef7011b516b2c Mon Sep 17 00:00:00 2001 From: Dmitry Podgorny Date: Sun, 4 Sep 2016 02:05:00 +0300 Subject: [PATCH] Integrate with Travis-CI --- .travis.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..4bc556b --- /dev/null +++ b/.travis.yml @@ -0,0 +1,11 @@ +language: c +install: + - sudo apt-get update + - sudo apt-get -y install libtool pkg-config libexpat1-dev libxml2-dev libssl-dev check +script: + - ./bootstrap.sh + - ./configure --without-libxml2 && make CFLAGS="-Wall -Werror" && make CFLAGS="-Wall -Werror" check-TESTS && make install && make uninstall + - make clean + - ./configure --with-libxml2 && make CFLAGS="-Wall -Werror" && make CFLAGS="-Wall -Werror" check-TESTS && make install && make uninstall + - make clean + - ./configure --disable-tls && make CFLAGS="-Wall -Werror" && make CFLAGS="-Wall -Werror" check-TESTS && make install && make uninstall