-
Notifications
You must be signed in to change notification settings - Fork 55
82 lines (76 loc) · 3.25 KB
/
Copy pathci.yml
File metadata and controls
82 lines (76 loc) · 3.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
permissions:
contents: read
jobs:
test:
name: nginx 1.31.4
runs-on: ubuntu-22.04
timeout-minutes: 45
steps:
- name: Checkout
uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
- name: Install system dependencies
run: |
sudo apt-get update
sudo DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
axel \
build-essential \
ca-certificates \
cpanminus \
git \
liblist-moreutils-perl \
libtest-base-perl \
libtest-longstring-perl \
libtext-diff-perl \
liburi-perl \
libwww-perl \
memcached \
ragel \
wget
sudo systemctl start memcached
- name: Build and test
env:
CC: gcc
NGINX_VERSION: 1.31.4
run: |
set -e
mkdir -p download-cache
export LUAJIT_PREFIX=/opt/luajit21
export LUAJIT_LIB=$LUAJIT_PREFIX/lib
export LD_LIBRARY_PATH=$LUAJIT_LIB:$LD_LIBRARY_PATH
export LUAJIT_INC=$LUAJIT_PREFIX/include/luajit-2.1
export LUA_INCLUDE_DIR=$LUAJIT_INC
export LUA_CMODULE_DIR=/lib
export JOBS=3
export NGX_BUILD_JOBS=$JOBS
git clone https://github.com/openresty/nginx-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/openresty/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/nginx-eval-module.git ../eval-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
sudo iptables -I OUTPUT -p tcp --dst 127.0.0.2 --dport 12345 -j DROP
sudo iptables -I OUTPUT -p udp --dst 127.0.0.2 --dport 12345 -j DROP
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 ..
cpanm --sudo --notest Test::Nginx IPC::Run Test2::Util > build.log 2>&1 || (cat build.log && exit 1)
cd test-nginx && sudo cpanm . && cd ..
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)
nginx -V
ldd `which nginx`|grep luajit
prove -I. -r t