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