Test dynamic module build
parent
9d34233ff4
commit
7ca820ec4d
|
@ -6,9 +6,9 @@ compiler:
|
||||||
|
|
||||||
env:
|
env:
|
||||||
# At least try stable and mainline versions
|
# At least try stable and mainline versions
|
||||||
- NGINX=1.10.0
|
- NGINX=1.10.0 TYPE=dynamic
|
||||||
- NGINX=1.9.15
|
- NGINX=1.9.15 TYPE=dynamic
|
||||||
- NGINX=1.8.1
|
- NGINX=1.8.1 TYPE=static
|
||||||
# Also, the oldest supported version
|
# Also, the oldest supported version
|
||||||
# TODO: Fails building because it won't find IOV_MAX from header.
|
# TODO: Fails building because it won't find IOV_MAX from header.
|
||||||
#- NGINX=0.7.69
|
#- NGINX=0.7.69
|
||||||
|
@ -26,5 +26,5 @@ cache: ccache
|
||||||
script: |
|
script: |
|
||||||
wget -O - http://nginx.org/download/nginx-${NGINX}.tar.gz | tar -xzf -
|
wget -O - http://nginx.org/download/nginx-${NGINX}.tar.gz | tar -xzf -
|
||||||
cd nginx-${NGINX}
|
cd nginx-${NGINX}
|
||||||
./configure --add-module=.. --with-http_addition_module
|
if [[ ${TYPE} = "dynamic" ]] ; then ./configure --add-dynamic-module=.. --with-http_addition_module ; else ./configure --add-module=.. --with-http_addition_module ; fi
|
||||||
make
|
make
|
||||||
|
|
Loading…
Reference in New Issue