tests: update version of pcre2 to 10.46. #38
Travis CI / Travis CI - Pull Request
failed
Oct 13, 2025 in 11m 10s
Build Failed
The build failed. This is a change from the previous build, which passed.
Details
This is a pull request build.
It is running a build against the merge commit, after merging #38 tests: update version of pcre2 to 10.46..
Any changes that have been made to the master branch before the build ran are also included.
Jobs and Stages
This build only has a single job.
You can use jobs to test against multiple versions of your runtime or dependencies, or to speed up your build.
Build Configuration
| Build Option | Setting |
|---|---|
| Language | C |
| Operating System | Linux (Focal) |
| Compiler Version | gcc |
Build Configuration
{
"language": "c",
"os": [
"linux"
],
"dist": "focal",
"sudo": true,
"branches": {
"only": [
"master"
]
},
"compiler": [
"gcc"
],
"env": [
"global={:LUAJIT_PREFIX=>\"/opt/luajit21\"}={:LUAJIT_LIB=>\"$LUAJIT_PREFIX/lib\"}={:LD_LIBRARY_PATH=>\"$LUAJIT_LIB:$LD_LIBRARY_PATH\"}={:LUAJIT_INC=>\"$LUAJIT_PREFIX/include/luajit-2.1\"}={:LUA_INCLUDE_DIR=>\"$LUAJIT_INC\"}={:LUA_CMODULE_DIR=>\"/lib\"}={:OPENSSL_PREFIX=>\"/opt/ssl\"}={:OPENSSL_LIB=>\"$OPENSSL_PREFIX/lib\"}={:OPENSSL_INC=>\"$OPENSSL_PREFIX/include\"}={:PCRE2_VER=>\"10.46\"}={:PCRE2_PREFIX=>\"/opt/pcre\"}={:PCRE2_LIB=>\"$PCRE_PREFIX/lib\"}={:PCRE2_INC=>\"$PCRE_PREFIX/include\"}={:JOBS=>\"3\"}={:NGX_BUILD_JOBS=>\"$JOBS\"} jobs={:NGINX_VERSION=>\"1.29.2\", :OPENSSL_VER=>\"3.5.4\"}"
],
"before_install": [
"sudo apt-get install -qq -y axel cpanminus libtest-base-perl libtext-diff-perl liburi-perl libwww-perl libtest-longstring-perl liblist-moreutils-perl ca-certificates > build.log 2>&1 || (cat build.log && exit 1)"
],
"install": [
"if [ -n \"$PCRE2_VER\" ] && [ ! -f download-cache/pcre2-$PCRE2_VER.tar.gz ]; then wget -P download-cache https://github.com/PCRE2Project/pcre2/releases/download/pcre2-${PCRE2_VER}/pcre2-${PCRE2_VER}.tar.gz; fi",
"if [ -n \"$OPENSSL_VER\" ] && [ ! -f download-cache/openssl-$OPENSSL_VER.tar.gz ]; then wget -P download-cache https://github.com/openssl/openssl/releases/download/openssl-$OPENSSL_VER/openssl-$OPENSSL_VER.tar.gz || wget -P download-cache https://www.openssl.org/source/openssl-$OPENSSL_VER.tar.gz || wget -P download-cache https://www.openssl.org/source/old/${OPENSSL_VER//[a-z]/}/openssl-$OPENSSL_VER.tar.gz; fi",
"git clone https://github.com/openresty/openresty-devel-utils.git",
"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/no-pool-nginx.git ../no-pool-nginx",
"git clone https://github.com/simpl/ngx_devel_kit.git ../ndk-nginx-module",
"git clone https://github.com/openresty/test-nginx.git",
"git clone -b v2.1-agentzh https://github.com/openresty/luajit2.git",
"git clone https://github.com/openresty/lua-nginx-module.git ../lua-nginx-module",
"git clone https://github.com/openresty/echo-nginx-module.git ../echo-nginx-module",
"git clone https://github.com/openresty/set-misc-nginx-module.git ../set-misc-nginx-module"
],
"script": [
"cd luajit2",
"make -j$JOBS CCDEBUG=-g Q= PREFIX=$LUAJIT_PREFIX CC=$CC XCFLAGS='-DLUA_USE_APICHECK -DLUA_USE_ASSERT' > 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 ..",
"tar zxf download-cache/pcre2-$PCRE2_VER.tar.gz",
"cd pcre2-$PCRE2_VER/",
"./configure --prefix=$PCRE2_PREFIX --enable-jit --enable-utf --enable-unicode-properties > build.log 2>&1 || (cat build.log && exit 1)",
"make -j$JOBS > build.log 2>&1 || (cat build.log && exit 1)",
"sudo PATH=$PATH make install > build.log 2>&1 || (cat build.log && exit 1)",
"cd ..",
"tar zxf download-cache/openssl-$OPENSSL_VER.tar.gz",
"cd openssl-$OPENSSL_VER/",
"./config no-threads shared -g --prefix=$OPENSSL_PREFIX -DPURIFY > build.log 2>&1 || (cat build.log && exit 1)",
"make -j$JOBS > build.log 2>&1 || (cat build.log && exit 1)",
"sudo make PATH=$PATH install_sw > build.log 2>&1 || (cat build.log && exit 1)",
"cd ..",
"cd test-nginx && sudo cpanm . && cd ..",
"export PATH=$PWD/work/nginx/sbin:$PWD/openresty-devel-utils:$PATH",
"export NGX_BUILD_CC=$CC",
"sh util/build.sh $NGINX_VERSION > build.log 2>&1 || (cat build.log && exit 1)",
"nginx -V",
"ldd `which nginx`|grep luajit",
"prove -I. -r t"
]
}
Loading