docs: add pre-built package installation for Ubuntu/Debian #124
Travis CI / Travis CI - Pull Request
failed
Feb 3, 2026 in 3m 2s
Build Failed
The build failed, just like the previous build.
Details
This is a pull request build.
It is running a build against the merge commit, after merging #124 docs: add pre-built package installation for Ubuntu/Debian.
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\"}={:LUAJIT_INC=>\"$LUAJIT_PREFIX/include/luajit-2.1\"}={:LD_LIBRARY_PATH=>\"$LUAJIT_LIB:$LD_LIBRARY_PATH\"} jobs={:NGINX_VERSION=>\"1.29.4\"}"
],
"before_install": [
"sudo apt-get install -qq -y cpanminus libgd-dev ca-certificates",
"sudo cpanm -v --notest Test::Nginx > build.log 2>&1 || (cat build.log && exit 1)"
],
"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 ../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 ../nginx-eval-module",
"git clone -b v2.1-agentzh https://github.com/openresty/luajit2.git ../luajit2"
],
"script": [
"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 ../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)",
"make -j2 > build.log 2>&1 || (cat build.log && exit 1)",
"export PATH=`pwd`/objs:$PATH",
"cd ..",
"prove -I. -r t"
]
}
Loading