From 7ca820ec4d15402d0e3736de1c4d93cf08dc1079 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3bert=20Nagy?= Date: Mon, 23 May 2016 23:38:00 +0200 Subject: [PATCH] Test dynamic module build --- .travis.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index a42eec8..4037faf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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 @@ -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