blob: 1a07c80c73522ebe6c0cf3c1fef4b1441f1750e2 [file] [log] [blame]
Ilya Shipitsinb396f4d2019-04-30 15:33:36 +05001FreeBSD_task:
2 freebsd_instance:
Ilya Shipitsin125ad1f2019-12-26 13:37:36 +05003 matrix:
Ilya Shipitsineccb2b42020-02-11 13:16:02 +05004 image_family: freebsd-13-0-snap
5 image_family: freebsd-12-1-snap
Ilya Shipitsin125ad1f2019-12-26 13:37:36 +05006 image_family: freebsd-11-3-snap
Ilya Shipitsin632cae22019-10-27 20:16:29 +05007 only_if: $CIRRUS_BRANCH =~ 'master|next'
Ilya Shipitsin125ad1f2019-12-26 13:37:36 +05008 install_script:
Ilya Shipitsin1726dab2020-02-11 13:19:22 +05009 - pkg update -f && pkg upgrade -y && pkg install -y openssl git gmake lua53 socat
Ilya Shipitsinb396f4d2019-04-30 15:33:36 +050010 script:
Ilya Shipitsinb396f4d2019-04-30 15:33:36 +050011 - git clone https://github.com/VTest/VTest.git ../vtest
12 - make -C ../vtest
Ilya Shipitsin4550e872020-02-11 13:20:32 +050013 - gmake CC=clang V=1 ERR=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
Ilya Shipitsinb396f4d2019-04-30 15:33:36 +050014 - ./haproxy -vv
15 - ldd haproxy
16 - env VTEST_PROGRAM=../vtest/vtest gmake reg-tests || (for folder in /tmp/*regtest*/vtc.*; do cat $folder/INFO $folder/LOG; done && exit 1)
17
Ilya Shipitsinc886e592019-09-02 00:03:10 +050018centos_6_task:
19 container:
20 image: centos:centos6
Ilya Shipitsin632cae22019-10-27 20:16:29 +050021 only_if: $CIRRUS_BRANCH =~ 'master|next'
Ilya Shipitsinc886e592019-09-02 00:03:10 +050022 script:
Ilya Shipitsin125ad1f2019-12-26 13:37:36 +050023 - yum install -q -y gcc git openssl-devel pcre-devel epel-release socat
Ilya Shipitsinc886e592019-09-02 00:03:10 +050024 - yum install -q -y python34
25 - git clone https://github.com/VTest/VTest.git ../vtest
26 # Special flags due to: https://github.com/vtest/VTest/issues/12
27 - make -C ../vtest FLAGS="-O2 -s -Wall -lrt"
28 - make CC=cc V=1 TARGET=linux-glibc-legacy USE_ZLIB=1 USE_PCRE=1 USE_OPENSSL=1
29 - ./haproxy -vv
30 - ldd haproxy
Ilya Shipitsinbd99f6d2019-09-06 23:18:14 +050031 # remove alpn reg-test (CentOS 6 does not support alpn)
32 - rm reg-tests/connection/proxy_protocol_random_fail.vtc
Ilya Shipitsinc886e592019-09-02 00:03:10 +050033 - env VTEST_PROGRAM=../vtest/vtest make reg-tests || (for folder in /tmp/*regtest*/vtc.*; do cat $folder/INFO $folder/LOG; done && exit 1)