Browse Source

Build: workaround for lua-nginx-module v0.10.25 for nginx 1.23.0 changes with nginx 1.21.5 which is built with the PCRE2 library by default

pull/1801/head
lianglli 2 years ago
parent
commit
2fc91fb772
  1. 2
      .github/workflows/ci-arm64.yml
  2. 2
      .github/workflows/ci.yml
  3. 2
      .github/workflows/test-nginx-core.yml

2
.github/workflows/ci-arm64.yml

@ -50,7 +50,7 @@ jobs:
export LUAJIT_LIB=/usr/local/lib
export LUAJIT_INC=/usr/local/include/luajit-2.1
./configure \
--with-ld-opt="-Wl,-rpath,-lpcre,/usr/local/lib" \
--with-ld-opt="-Wl,-lpcre,-rpath,/usr/local/lib" \
--with-ipv6 \
--with-http_ssl_module \
--with-http_v2_module \

2
.github/workflows/ci.yml

@ -45,7 +45,7 @@ jobs:
run: |
./configure \
--with-debug \
--with-ld-opt="-Wl,-rpath,-lpcre,/usr/local/lib" \
--with-ld-opt="-Wl,-lpcre,-rpath,/usr/local/lib" \
--with-ipv6 \
--with-openssl-async \
--with-http_ssl_module \

2
.github/workflows/test-nginx-core.yml

@ -51,7 +51,7 @@ jobs:
# For "-D T_NGX_HTTP_UPSTREAM_RANDOM=0", it makes some cases pass, such as image_filter_finalize.t.
./configure \
--with-cc-opt="-D T_NGX_MODIFY_DEFAULT_VALUE=0 -D T_NGX_HTTP_IMAGE_FILTER=0 -D T_NGX_SERVER_INFO=0 -D T_NGX_HTTP_UPSTREAM_RANDOM=0" \
--with-ld-opt="-Wl,-rpath,-lpcre,/usr/local/lib" \
--with-ld-opt="-Wl,-lpcre,-rpath,/usr/local/lib" \
--with-openssl-async \
--with-pcre \
--with-http_ssl_module \

Loading…
Cancel
Save