Skip to content

Commit

Permalink
Test dynamic module build
Browse files Browse the repository at this point in the history
  • Loading branch information
vrnagy committed May 23, 2016
1 parent 9d34233 commit 7ca820e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ compiler:

env:
# At least try stable and mainline versions
- NGINX=1.10.0
- NGINX=1.9.15
- NGINX=1.8.1
- NGINX=1.10.0 TYPE=dynamic
- NGINX=1.9.15 TYPE=dynamic
- NGINX=1.8.1 TYPE=static
# Also, the oldest supported version
# TODO: Fails building because it won't find IOV_MAX from header.
#- NGINX=0.7.69
Expand All @@ -26,5 +26,5 @@ cache: ccache
script: |
wget -O - http://nginx.org/download/nginx-${NGINX}.tar.gz | tar -xzf -
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

0 comments on commit 7ca820e

Please sign in to comment.