2019-02-04 21:22:05 +00:00
|
|
|
sudo: required
|
|
|
|
dist: xenial
|
|
|
|
|
|
|
|
os: linux
|
|
|
|
|
|
|
|
language: c
|
|
|
|
|
|
|
|
compiler:
|
|
|
|
- gcc
|
|
|
|
- clang
|
|
|
|
|
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
packages:
|
|
|
|
- axel
|
|
|
|
- dos2unix
|
|
|
|
- cpanminus
|
|
|
|
- libgd-dev
|
2020-04-02 23:44:21 +00:00
|
|
|
|
2020-02-05 09:18:35 +00:00
|
|
|
linux-s390x: &linux-s390x
|
|
|
|
os: linux
|
|
|
|
arch: s390x
|
|
|
|
dist: xenial
|
|
|
|
compiler: gcc
|
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
update: true
|
|
|
|
packages:
|
|
|
|
- axel
|
|
|
|
- dos2unix
|
|
|
|
- cpanminus
|
|
|
|
- libgd-dev
|
2020-10-18 02:40:49 +00:00
|
|
|
- libpcre3
|
|
|
|
- libpcre3-dev
|
|
|
|
- mercurial
|
2020-02-05 09:18:35 +00:00
|
|
|
- libpq-dev
|
|
|
|
install:
|
|
|
|
- sudo cpanm --notest Test::Nginx IPC::Run3 > build.log 2>&1 || (cat build.log && exit 1)
|
2020-04-02 22:12:29 +00:00
|
|
|
- if [ ! -f download-cache/openssl-$OPENSSL_VER.tar.gz ]; then wget -P download-cache https://www.openssl.org/source/openssl-$OPENSSL_VER.tar.gz || wget -P download-cache https://www.openssl.org/source/old/${OPENSSL_VER//[a-z]/}/openssl-$OPENSSL_VER.tar.gz; fi
|
2020-02-05 09:18:35 +00:00
|
|
|
- tar zxf download-cache/openssl-$OPENSSL_VER.tar.gz
|
|
|
|
- cd openssl-$OPENSSL_VER/
|
|
|
|
- patch -p1 < ../patches/openssl-$OPENSSL_PATCH_VER-sess_set_get_cb_yield.patch
|
|
|
|
- ./config no-threads shared enable-ssl3 enable-ssl3-method -g --prefix=$OPENSSL_PREFIX -DPURIFY > build.log 2>&1 || (cat build.log && exit 1)
|
|
|
|
- make -j$JOBS > build.log 2>&1 || (cat build.log && exit 1)
|
|
|
|
- sudo make PATH=$PATH install_sw > build.log 2>&1 || (cat build.log && exit 1)
|
|
|
|
- cd ..
|
|
|
|
- sudo ln -s /usr/bin/make /usr/bin/gmake
|
|
|
|
script:
|
|
|
|
- util/mirror-tarballs > build.log 2>&1 || (cat build.log && exit 1)
|
|
|
|
- cd openresty-*
|
|
|
|
- ./configure --prefix=$OPENRESTY_PREFIX --with-cc-opt="-I$PCRE_INC -I$OPENSSL_INC" --with-ld-opt="-L$PCRE_LIB -L$OPENSSL_LIB -Wl,-rpath,$PCRE_LIB:$OPENSSL_LIB" --with-pcre-jit --with-http_ssl_module --with-debug -j$JOBS > build.log 2>&1 || (cat build.log && exit 1)
|
|
|
|
- make -j$JOBS > build.log 2>&1 || (cat build.log && exit 1)
|
|
|
|
- sudo make install > build.log 2>&1 || (cat build.log && exit 1)
|
|
|
|
- cd ..
|
|
|
|
- export PATH=$OPENRESTY_PREFIX/bin:$OPENRESTY_PREFIX/nginx/sbin:$PATH
|
|
|
|
- nginx -V
|
|
|
|
- ldd `which nginx`|grep -E 'luajit|ssl|pcre'
|
2020-04-02 23:44:21 +00:00
|
|
|
|
2019-02-04 21:22:05 +00:00
|
|
|
cache:
|
|
|
|
directories:
|
|
|
|
- download-cache
|
|
|
|
|
|
|
|
env:
|
|
|
|
global:
|
|
|
|
- JOBS=3
|
2020-04-02 23:44:21 +00:00
|
|
|
- PCRE_VER=8.44
|
2019-02-04 21:22:05 +00:00
|
|
|
- PCRE_PREFIX=/opt/pcre
|
|
|
|
- PCRE_LIB=$PCRE_PREFIX/lib
|
|
|
|
- PCRE_INC=$PCRE_PREFIX/include
|
|
|
|
- OPENSSL_PREFIX=/opt/ssl
|
|
|
|
- OPENSSL_LIB=$OPENSSL_PREFIX/lib
|
|
|
|
- OPENSSL_INC=$OPENSSL_PREFIX/include
|
|
|
|
- OPENRESTY_PREFIX=/opt/openresty
|
|
|
|
matrix:
|
2020-04-02 22:12:29 +00:00
|
|
|
- OPENSSL_VER=1.0.2u OPENSSL_PATCH_VER=1.0.2h
|
|
|
|
- OPENSSL_VER=1.1.0l OPENSSL_PATCH_VER=1.1.0d
|
2021-06-01 04:20:27 +00:00
|
|
|
- OPENSSL_VER=1.1.1k OPENSSL_PATCH_VER=1.1.1f
|
2019-02-04 21:22:05 +00:00
|
|
|
|
2020-02-05 09:18:35 +00:00
|
|
|
jobs:
|
|
|
|
include:
|
|
|
|
- <<: *linux-s390x
|
2020-04-02 22:12:29 +00:00
|
|
|
env: OPENSSL_VER=1.0.2u OPENSSL_PATCH_VER=1.0.2h
|
2020-02-05 09:18:35 +00:00
|
|
|
- <<: *linux-s390x
|
2020-04-02 22:12:29 +00:00
|
|
|
env: OPENSSL_VER=1.1.0l OPENSSL_PATCH_VER=1.1.0d
|
2020-02-05 09:18:35 +00:00
|
|
|
- <<: *linux-s390x
|
2021-06-01 04:20:27 +00:00
|
|
|
env: OPENSSL_VER=1.1.1k OPENSSL_PATCH_VER=1.1.1f
|
2020-04-02 22:12:29 +00:00
|
|
|
|
2019-02-04 21:22:05 +00:00
|
|
|
install:
|
|
|
|
- sudo cpanm --notest Test::Nginx IPC::Run3 > build.log 2>&1 || (cat build.log && exit 1)
|
2020-04-02 23:44:21 +00:00
|
|
|
- if [ ! -f download-cache/pcre-$PCRE_VER.tar.gz ]; then wget -P download-cache https://ftp.pcre.org/pub/pcre/pcre-$PCRE_VER.tar.gz; fi
|
2020-04-02 22:12:29 +00:00
|
|
|
- if [ ! -f download-cache/openssl-$OPENSSL_VER.tar.gz ]; then wget -P download-cache https://www.openssl.org/source/openssl-$OPENSSL_VER.tar.gz || wget -P download-cache https://www.openssl.org/source/old/${OPENSSL_VER//[a-z]/}/openssl-$OPENSSL_VER.tar.gz; fi
|
2019-02-04 21:22:05 +00:00
|
|
|
- tar zxf download-cache/pcre-$PCRE_VER.tar.gz
|
|
|
|
- cd pcre-$PCRE_VER/
|
|
|
|
- ./configure --prefix=$PCRE_PREFIX --enable-jit --enable-utf --enable-unicode-properties > build.log 2>&1 || (cat build.log && exit 1)
|
|
|
|
- make -j$JOBS > build.log 2>&1 || (cat build.log && exit 1)
|
|
|
|
- sudo PATH=$PATH make install > build.log 2>&1 || (cat build.log && exit 1)
|
|
|
|
- cd ..
|
|
|
|
- tar zxf download-cache/openssl-$OPENSSL_VER.tar.gz
|
|
|
|
- cd openssl-$OPENSSL_VER/
|
|
|
|
- patch -p1 < ../patches/openssl-$OPENSSL_PATCH_VER-sess_set_get_cb_yield.patch
|
2019-07-15 18:05:35 +00:00
|
|
|
- ./config no-threads shared enable-ssl3 enable-ssl3-method -g --prefix=$OPENSSL_PREFIX -DPURIFY > build.log 2>&1 || (cat build.log && exit 1)
|
2019-02-04 21:22:05 +00:00
|
|
|
- make -j$JOBS > build.log 2>&1 || (cat build.log && exit 1)
|
|
|
|
- sudo make PATH=$PATH install_sw > build.log 2>&1 || (cat build.log && exit 1)
|
|
|
|
- cd ..
|
|
|
|
- sudo ln -s /usr/bin/make /usr/bin/gmake
|
|
|
|
|
|
|
|
script:
|
|
|
|
- util/mirror-tarballs > build.log 2>&1 || (cat build.log && exit 1)
|
|
|
|
- cd openresty-*
|
|
|
|
- ./configure --prefix=$OPENRESTY_PREFIX --with-cc-opt="-I$PCRE_INC -I$OPENSSL_INC" --with-ld-opt="-L$PCRE_LIB -L$OPENSSL_LIB -Wl,-rpath,$PCRE_LIB:$OPENSSL_LIB" --with-pcre-jit --with-http_ssl_module --with-debug -j$JOBS > build.log 2>&1 || (cat build.log && exit 1)
|
|
|
|
- make -j$JOBS > build.log 2>&1 || (cat build.log && exit 1)
|
|
|
|
- sudo make install > build.log 2>&1 || (cat build.log && exit 1)
|
|
|
|
- cd ..
|
|
|
|
- export PATH=$OPENRESTY_PREFIX/bin:$OPENRESTY_PREFIX/nginx/sbin:$PATH
|
|
|
|
- nginx -V
|
|
|
|
- ldd `which nginx`|grep -E 'luajit|ssl|pcre'
|
2019-09-24 19:08:42 +00:00
|
|
|
- prove -r t/
|