2019-04-30 13:33:36 +03:00
FreeBSD_task :
freebsd_instance :
image : freebsd-12-0-release-amd64
2019-10-27 18:16:29 +03:00
only_if : $CIRRUS_BRANCH =~ 'master|next'
2019-04-30 13:33:36 +03:00
env :
ASSUME_ALWAYS_YES : TRUE # required for unattended "pkg" invocation
script :
- pkg install openssl111 git gmake lua53
- git clone https://github.com/VTest/VTest.git ../vtest
- make -C ../vtest
- gmake CC=clang V=1 TARGET=freebsd USE_ZLIB=1 USE_PCRE=1 USE_OPENSSL=1 USE_LUA=1 LUA_INC=/usr/local/include/lua53 LUA_LIB=/usr/local/lib LUA_LIB_NAME=lua-5.3
- ./haproxy -vv
- ldd haproxy
- env VTEST_PROGRAM=../vtest/vtest gmake reg-tests || (for folder in /tmp/*regtest*/vtc.*; do cat $folder/INFO $folder/LOG; done && exit 1)
2019-09-01 22:03:10 +03:00
centos_6_task :
container :
image : centos:centos6
2019-10-27 18:16:29 +03:00
only_if : $CIRRUS_BRANCH =~ 'master|next'
2019-09-01 22:03:10 +03:00
script :
- yum install -q -y gcc git openssl-devel pcre-devel epel-release
- yum install -q -y python34
- git clone https://github.com/VTest/VTest.git ../vtest
# Special flags due to: https://github.com/vtest/VTest/issues/12
- make -C ../vtest FLAGS="-O2 -s -Wall -lrt"
- make CC=cc V=1 TARGET=linux-glibc-legacy USE_ZLIB=1 USE_PCRE=1 USE_OPENSSL=1
- ./haproxy -vv
- ldd haproxy
2019-09-06 21:18:14 +03:00
# remove alpn reg-test (CentOS 6 does not support alpn)
- rm reg-tests/connection/proxy_protocol_random_fail.vtc
2019-09-01 22:03:10 +03:00
- env VTEST_PROGRAM=../vtest/vtest make reg-tests || (for folder in /tmp/*regtest*/vtc.*; do cat $folder/INFO $folder/LOG; done && exit 1)