Files
nginx-custom/ngx-fancyindex/.travis.yml
2017-02-26 00:07:07 +01:00

35 lines
576 B
YAML

language: c
compiler:
- clang
- gcc
env:
# Mainline
- NGINX=1.11.3
- NGINX=1.11.3 DYNAMIC=1
# Stable
- NGINX=1.10.1
- NGINX=1.10.1 DYNAMIC=1
# Other configurations
- NGINX=1.9.15
- NGINX=1.9.15 DYNAMIC=1
- NGINX=1.8.1
# Also, the oldest supported version
# TODO: Fails building because it won't find IOV_MAX from header.
#- NGINX=0.7.69
sudo: false
addons:
apt:
packages:
- libpcre3-dev
- libssl-dev
cache: ccache
script:
- echo "NGINX=${NGINX} ${DYNAMIC:+DYNAMIC=${DYNAMIC}}"
- t/build-and-run ${NGINX} ${DYNAMIC}