Skip to content

docs: add pre-built package installation for Ubuntu/Debian

056740a
Select commit
Loading
Failed to load commit list.
Open

docs: add pre-built package installation for Ubuntu/Debian #82

docs: add pre-built package installation for Ubuntu/Debian
056740a
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Feb 3, 2026 in 2m 46s

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 #82 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\"}={: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\"}={:JOBS=>\"3\"}={:NGX_BUILD_JOBS=>\"$JOBS\"}={:TEST_NGINX_SLEEP=>\"0.006\"} jobs={:NGINX_VERSION=>\"1.29.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 > build.log 2>&1 || (cat build.log && exit 1)"
  ],
  "install": [
    "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/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/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/echo-nginx-module.git ../echo-nginx-module",
    "git clone https://github.com/calio/iconv-nginx-module.git ../iconv-nginx-module"
  ],
  "script": [
    "export PATH=$PWD/work/nginx/sbin:$PWD/openresty-devel-utils:$PATH",
    "ngx-releng > check.txt || true",
    "lines=`wc -l check.txt | awk '{print $1}'`; if [ $lines -gt 3 ]; then cat check.txt; exit 1; 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 ..",
    "export NGX_BUILD_CC=$CC",
    "sh util/build.sh $NGINX_VERSION > build.log 2>&1 || (cat build.log && exit 1)",
    "nginx -V",
    "prove -I. -r t"
  ]
}