Test Travis builds

This commit is contained in:
Philippe Teuwen 2017-03-03 18:41:13 +01:00
parent b65674a8e3
commit 86ce8dff52

View file

@ -1,4 +1,12 @@
language: cpp language: c
compiler:
- clang
- gcc
env:
- BLD=cmake
- BLD=autoconf
addons: addons:
apt: apt:
@ -9,9 +17,5 @@ addons:
- libcutter-dev - libcutter-dev
script: script:
- autoreconf -vfi - if [ $BLD == autoconf ]; then autoreconf -vfi && ./configure --prefix=$HOME/.local/ && make -j2 && make install; fi
- ./configure --prefix=$HOME/.local/ - if [ $BLD == cmake ]; then cmake -DCMAKE_INSTALL_PREFIX=~/.local . && make -j2 && make install; fi
- make -j2
- make install
- cmake -DCMAKE_INSTALL_PREFIX=~/.local .
- make install -j2