-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
34 lines (27 loc) · 936 Bytes
/
.travis.yml
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
sudo: required
dist: trusty
os: linux
language: c
compiler:
- gcc
- clang
env:
matrix:
- NGINX_VERSION=1.10.3
- NGINX_VERSION=1.11.9
before_install:
- sudo apt-get install -qq -y cpanminus libluajit-5.1-dev libgd-dev libpcre3-dev
- sudo cpanm --notest Test::Nginx > build.log 2>&1 || (cat build.log && exit 1)
install:
- wget http://nginx.org/download/nginx-${NGINX_VERSION}.tar.gz
- git clone https://github.com/openresty/echo-nginx-module.git
- git clone https://github.com/simpl/ngx_devel_kit.git
script:
- tar xzf nginx-${NGINX_VERSION}.tar.gz
- cd nginx-${NGINX_VERSION}/
- ./configure --with-debug --with-pcre --with-pcre-jit --with-ipv6 --with-poll_module --add-module=.. --add-module=../echo-nginx-module > build.log 2>&1 || (cat build.log && exit 1)
- make -j2 > build.log 2>&1 || (cat build.log && exit 1)
- export PATH=$PATH:`pwd`/objs
- cd ..
- nginx -V
- prove -lv t