split travis build into multiple jobs
This commit is contained in:
16
.travis.yml
16
.travis.yml
@@ -2,10 +2,14 @@ language: c
|
|||||||
install:
|
install:
|
||||||
- sudo apt-get update
|
- sudo apt-get update
|
||||||
- sudo apt-get -y install libtool pkg-config libexpat1-dev libxml2-dev libssl-dev check
|
- sudo apt-get -y install libtool pkg-config libexpat1-dev libxml2-dev libssl-dev check
|
||||||
script:
|
before_script:
|
||||||
- ./bootstrap.sh
|
- ./bootstrap.sh
|
||||||
- ./configure --without-libxml2 && make CFLAGS="-Wall -Werror" && make CFLAGS="-Wall -Werror" check-TESTS
|
script:
|
||||||
- make clean
|
- ./configure ${CONFIGURE_OPT} && make CFLAGS="-Wall -Werror" && make CFLAGS="-Wall -Werror" check-TESTS
|
||||||
- ./configure --with-libxml2 && make CFLAGS="-Wall -Werror" && make CFLAGS="-Wall -Werror" check-TESTS
|
env:
|
||||||
- make clean
|
- CONFIGURE_OPT="--without-libxml2"
|
||||||
- ./configure --disable-tls && make CFLAGS="-Wall -Werror" && make CFLAGS="-Wall -Werror" check-TESTS
|
- CONFIGURE_OPT="--with-libxml2"
|
||||||
|
- CONFIGURE_OPT="--disable-tls --without-libxml2"
|
||||||
|
- CONFIGURE_OPT="--disable-tls --with-libxml2"
|
||||||
|
matrix:
|
||||||
|
fast_finish: true
|
||||||
|
|||||||
Reference in New Issue
Block a user