16 lines
463 B
YAML
16 lines
463 B
YAML
language: c
|
|
install:
|
|
- sudo apt-get update
|
|
- sudo apt-get -y install libtool pkg-config libexpat1-dev libxml2-dev libssl-dev check
|
|
before_script:
|
|
- ./bootstrap.sh
|
|
script:
|
|
- ./configure ${CONFIGURE_OPT} && make && make check-TESTS
|
|
env:
|
|
- CONFIGURE_OPT="--without-libxml2"
|
|
- CONFIGURE_OPT="--with-libxml2"
|
|
- CONFIGURE_OPT="--disable-tls --without-libxml2"
|
|
- CONFIGURE_OPT="--disable-tls --with-libxml2"
|
|
matrix:
|
|
fast_finish: true
|