We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21a1a71 commit 0b7e73aCopy full SHA for 0b7e73a
.travis.yml
@@ -4,12 +4,15 @@ compiler:
4
- gcc
5
- clang
6
7
+env:
8
+ - BUILD_SYSTEM=AUTOTOOLS
9
+
10
addons:
11
apt:
12
packages:
13
- libogg-dev
14
15
script:
- - ./autogen.sh
- - ./configure
- - make -j2 V=1 distcheck
16
+ - if [[ "$BUILD_SYSTEM" == "AUTOTOOLS" ]] ; then ./autogen.sh ; fi
17
+ - if [[ "$BUILD_SYSTEM" == "AUTOTOOLS" ]] ; then ./configure ; fi
18
+ - if [[ "$BUILD_SYSTEM" == "AUTOTOOLS" ]] ; then make -j2 V=1 distcheck ; fi
0 commit comments