bugfix: fixed keepalive error in cosocket. #356
Merged
Travis CI / Travis CI - Pull Request
succeeded
Aug 6, 2024 in 12m 56s
Build Passed
The build passed, just like the previous build.
Details
This is a pull request build.
It is running a build against the merge commit, after merging #356 bugfix: fixed keepalive error in cosocket..
Any changes that have been made to the master branch before the build ran are also included.
Jobs and Stages
This build has two jobs, running in parallel.
Job | Compiler | ENV | OS | State |
---|---|---|---|---|
876.1 | gcc | LUAJIT_PREFIX=/opt/luajit21 | Linux | passed |
876.2 | gcc | LUAJIT_PREFIX=/opt/luajit21 | Linux | passed |
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"
],
"addons": {
"apt": {
"packages": [
"axel",
"cpanminus",
"libgd-dev",
"libtest-base-perl",
"libtext-diff-perl",
"liburi-perl",
"libwww-perl",
"libtest-longstring-perl",
"liblist-moreutils-perl",
"dnsutils"
]
}
},
"cache": {
"apt": true,
"directories": [
"download-cache"
]
},
"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\"}={:PCRE_VER=>\"8.45\"}={:PCRE2_VER=>\"10.37\"}={:PCRE_PREFIX=>\"/opt/pcre\"}={:PCRE2_PREFIX=>\"/opt/pcre2\"}={:PCRE_LIB=>\"$PCRE_PREFIX/lib\"}={:PCRE2_LIB=>\"$PCRE2_PREFIX/lib\"}={:PCRE_INC=>\"$PCRE_PREFIX/include\"}={:PCRE2_INC=>\"$PCRE2_PREFIX/include\"}={:OPENSSL_PREFIX=>\"/opt/ssl\"}={:OPENSSL_LIB=>\"$OPENSSL_PREFIX/lib\"}={:OPENSSL_INC=>\"$OPENSSL_PREFIX/include\"}={:JOBS=>\"3\"}={:NGX_BUILD_JOBS=>\"$JOBS\"}={:TEST_NGINX_SLEEP=>\"0.006\"} jobs={:NGINX_VERSION=>\"1.25.3\", :OPENSSL_VER=>\"1.1.1w\"}={:NGINX_VERSION=>\"1.25.3\", :OPENSSL_VER=>\"1.1.1w\", :USE_PCRE2=>\"Y\"}"
],
"services": [
"memcached",
"redis"
],
"install": [
"sudo apt update",
"sudo apt install --only-upgrade ca-certificates",
"if [ \"$USE_PCRE2\" != \"Y\" ] && [ ! -f download-cache/pcre-$PCRE_VER.tar.gz ]; then wget -P download-cache/ https://downloads.sourceforge.net/project/pcre/pcre/${PCRE_VER}/pcre-${PCRE_VER}.tar.gz; fi",
"if [ \"$USE_PCRE2\" = \"Y\" ] && [ ! -f download-cache/pcre2-$PCRE2_VER.tar.gz ]; then wget -P download-cache https://downloads.sourceforge.net/project/pcre/pcre2/${PCRE2_VER}/pcre2-${PCRE2_VER}.tar.gz; fi",
"if [ ! -f download-cache/openssl-$OPENSSL_VER.tar.gz ]; then 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/lua-cjson.git",
"git clone https://github.com/openresty/openresty.git ../openresty",
"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/mockeagain.git",
"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/memc-nginx-module.git ../memc-nginx-module",
"git clone https://github.com/openresty/headers-more-nginx-module.git ../headers-more-nginx-module",
"git clone https://github.com/openresty/lua-resty-lrucache.git ../lua-resty-lrucache",
"git clone https://github.com/openresty/lua-resty-core.git ../lua-resty-core"
],
"script": [
"sudo iptables -I OUTPUT 1 -p udp --dport 10086 -j REJECT",
"sudo iptables -A OUTPUT -p tcp --dst 127.0.0.2 --dport 12345 -j DROP",
"sudo iptables -A OUTPUT -p udp --dst 127.0.0.2 --dport 12345 -j DROP",
"sudo ip addr add 10.254.254.1/24 dev lo",
"sudo ip addr add 10.254.254.2/24 dev lo",
"sudo ip route add prohibit 0.0.0.1/32",
"if [ \"$USE_PCRE2\" != \"Y\" ]; then tar zxf download-cache/pcre-$PCRE_VER.tar.gz; cd pcre-$PCRE_VER/; ./configure --prefix=$PCRE_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 ..; fi",
"if [ \"$USE_PCRE2\" = \"Y\" ]; then tar zxf download-cache/pcre2-$PCRE2_VER.tar.gz; cd pcre2-$PCRE2_VER/; ./configure --prefix=$PCRE2_PREFIX --enable-jit --enable-utf > 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 ..; fi",
"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 ../test-nginx && sudo cpanm . && cd ..",
"cd lua-cjson/ && make -j$JOBS && sudo make install && cd ..",
"cd mockeagain/ && make CC=$CC -j$JOBS && cd ..",
"tar zxf download-cache/openssl-$OPENSSL_VER.tar.gz",
"cd openssl-$OPENSSL_VER/",
"./config no-threads shared enable-ssl3 enable-ssl3-method -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 ..",
"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 -E 'luajit|ssl|pcre'",
"export LD_PRELOAD=$PWD/mockeagain/mockeagain.so",
"export LD_LIBRARY_PATH=$PWD/mockeagain:$LD_LIBRARY_PATH",
"export TEST_NGINX_RESOLVER=8.8.4.4",
"dig +short @$TEST_NGINX_RESOLVER openresty.org || exit 0",
"dig +short @$TEST_NGINX_RESOLVER agentzh.org || exit 0",
"prove -I. -Itest-nginx/lib -r t"
]
}
Loading