66 lines
2.3 KiB
YAML
66 lines
2.3 KiB
YAML
sudo: required
|
|
dist: focal
|
|
|
|
branches:
|
|
only:
|
|
- "master"
|
|
|
|
os: linux
|
|
|
|
language: c
|
|
|
|
compiler:
|
|
- gcc
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- axel
|
|
- cpanminus
|
|
|
|
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
|
|
- PCRE_PREFIX=/usr/local/openresty/pcre2
|
|
- PCRE_LIB=$PCRE_PREFIX/lib
|
|
- PCRE_INC=$PCRE_PREFIX/include
|
|
matrix:
|
|
- NGINX_VERSION=1.29.8
|
|
|
|
before_install:
|
|
- sudo apt-get update -y
|
|
- sudo apt-get install -y ca-certificates
|
|
- sudo cpanm --notest Test::Nginx IPC::Run Test2::Util > build.log 2>&1 || (cat build.log && exit 1)
|
|
- sudo cpanm -v --notest Test::Nginx > build.log 2>&1 || (cat build.log && exit 1)
|
|
- wget -O - https://openresty.org/package/pubkey.gpg | sudo apt-key add -
|
|
- echo "deb http://openresty.org/package/ubuntu $(lsb_release -sc) main" | sudo tee /etc/apt/sources.list.d/openresty.list
|
|
- sudo apt-get update
|
|
- sudo DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends openresty-pcre2 openresty-openssl3 openresty-pcre2-dev openresty-openssl3-dev
|
|
|
|
install:
|
|
- git clone https://github.com/openresty/echo-nginx-module.git ../echo-nginx-module
|
|
- 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/nginx-eval-module.git ../eval-nginx-module
|
|
- 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/openresty/nginx-devel-utils.git
|
|
- git clone -b v2.1-agentzh https://github.com/openresty/luajit2.git luajit2
|
|
|
|
before_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 ..
|
|
|
|
script:
|
|
- export PATH=$PWD/work/nginx/sbin:$PWD/nginx-devel-utils:$PATH
|
|
- export NGX_BUILD_CC=$CC
|
|
- sh util/build.sh $NGINX_VERSION > build.log 2>&1 || (cat build.log && exit 1)
|
|
- prove -I. -r t
|
|
|