summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml9
1 files changed, 6 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
index 13d1f107..bf14445a 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -4,12 +4,15 @@ compiler:
- gcc
- clang
+env:
+ - BUILD_SYSTEM=AUTOTOOLS
+
addons:
apt:
packages:
- libogg-dev
script:
- - ./autogen.sh
- - ./configure
- - make -j2 V=1 distcheck
+ - if [[ "$BUILD_SYSTEM" == "AUTOTOOLS" ]] ; then ./autogen.sh ; fi
+ - if [[ "$BUILD_SYSTEM" == "AUTOTOOLS" ]] ; then ./configure ; fi
+ - if [[ "$BUILD_SYSTEM" == "AUTOTOOLS" ]] ; then make -j2 V=1 distcheck ; fi