diff --git a/.travis.yml b/.travis.yml index afb9930..1181c9f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -28,25 +28,25 @@ before_install: install: - wget http://nginx.org/download/nginx-${NGINX_VERSION}.tar.gz && tar -xzf nginx-${NGINX_VERSION}.tar.gz - - git clone https://github.com/simpl/ngx_devel_kit.git - - git clone https://github.com/openresty/set-misc-nginx-module.git - - git clone https://github.com/openresty/xss-nginx-module.git - - git clone https://github.com/openresty/rds-json-nginx-module.git - - git clone https://github.com/openresty/headers-more-nginx-module.git - - git clone https://github.com/openresty/lua-nginx-module.git - - git clone https://github.com/openresty/openresty.git + - git clone https://github.com/simpl/ngx_devel_kit.git ../ngx_devel_kit + - git clone https://github.com/openresty/set-misc-nginx-module.git ../set-misc-nginx-module + - git clone https://github.com/openresty/xss-nginx-module.git ../xss-nginx-module + - git clone https://github.com/openresty/rds-json-nginx-module.git ../rds-json-nginx-module + - git clone https://github.com/openresty/headers-more-nginx-module.git ../headers-more-nginx-module + - git clone https://github.com/openresty/lua-nginx-module.git ../lua-nginx-module + - git clone https://github.com/openresty/openresty.git ../openresty - git clone https://github.com/openresty/lua-resty-core.git ../lua-resty-core - git clone https://github.com/openresty/lua-resty-lrucache.git ../lua-resty-lrucache - - git clone https://github.com/openresty/nginx-eval-module.git - - git clone -b v2.1-agentzh https://github.com/openresty/luajit2.git luajit2 + - git clone https://github.com/openresty/nginx-eval-module.git ../nginx-eval-module.git + - git clone -b v2.1-agentzh https://github.com/openresty/luajit2.git ../luajit2 script: - - cd luajit2/ + - cd ../luajit2/ - make -j$JOBS CCDEBUG=-g Q= PREFIX=$LUAJIT_PREFIX CC=$CC XCFLAGS='-DLUA_USE_APICHECK -DLUA_USE_ASSERT -msse4.2' > build.log 2>&1 || (cat build.log && exit 1) - sudo make install PREFIX=$LUAJIT_PREFIX > build.log 2>&1 || (cat build.log && exit 1) - - cd .. + - cd ../echo-nginx-module - cd nginx-${NGINX_VERSION}/ - - ./configure --without-pcre2 --without-http_ssi_module --with-debug --with-select_module --with-poll_module --with-http_stub_status_module --with-http_image_filter_module --add-module=../ngx_devel_kit --add-module=../set-misc-nginx-module --add-module=../nginx-eval-module --add-module=../xss-nginx-module --add-module=../rds-json-nginx-module --add-module=../headers-more-nginx-module --add-module=../lua-nginx-module --add-module=.. > build.log 2>&1 || (cat build.log && exit 1) + - ./configure --without-pcre2 --without-http_ssi_module --with-debug --with-select_module --with-poll_module --with-http_stub_status_module --with-http_image_filter_module --add-module=../../ngx_devel_kit --add-module=../../set-misc-nginx-module --add-module=../../nginx-eval-module --add-module=../../xss-nginx-module --add-module=../../rds-json-nginx-module --add-module=../../headers-more-nginx-module --add-module=../../lua-nginx-module --add-module=.. > build.log 2>&1 || (cat build.log && exit 1) - make -j2 > build.log 2>&1 || (cat build.log && exit 1) - export PATH=`pwd`/objs:$PATH - cd ..