From 2a75a9f4d4c7a46b0b78dd51a0d3769229f75263 Mon Sep 17 00:00:00 2001 From: lijunlong Date: Mon, 17 Nov 2025 16:16:09 +0800 Subject: [PATCH 1/2] tests: update clone destination. --- .travis.yml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/.travis.yml b/.travis.yml index afb9930..4738af5 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/openresty/lua-resty-core.git ../lua-resty-core + - 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 ../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 .. From 0ea0f477db988bda8d5c0e88e189ac8901a8acd9 Mon Sep 17 00:00:00 2001 From: lijunlong Date: Tue, 9 Dec 2025 08:35:56 +0800 Subject: [PATCH 2/2] more fixes --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 4738af5..1181c9f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -35,7 +35,7 @@ install: - 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 ../lua-resty-core + - 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 ../nginx-eval-module.git - git clone -b v2.1-agentzh https://github.com/openresty/luajit2.git ../luajit2