Ilya Shipitsin | b396f4d | 2019-04-30 15:33:36 +0500 | [diff] [blame] | 1 | FreeBSD_task: |
| 2 | freebsd_instance: |
| 3 | image: freebsd-12-0-release-amd64 |
Ilya Shipitsin | 632cae2 | 2019-10-27 20:16:29 +0500 | [diff] [blame] | 4 | only_if: $CIRRUS_BRANCH =~ 'master|next' |
Ilya Shipitsin | b396f4d | 2019-04-30 15:33:36 +0500 | [diff] [blame] | 5 | env: |
| 6 | ASSUME_ALWAYS_YES: TRUE # required for unattended "pkg" invocation |
| 7 | script: |
| 8 | - pkg install openssl111 git gmake lua53 |
| 9 | - git clone https://github.com/VTest/VTest.git ../vtest |
| 10 | - make -C ../vtest |
| 11 | - 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 |
| 12 | - ./haproxy -vv |
| 13 | - ldd haproxy |
| 14 | - env VTEST_PROGRAM=../vtest/vtest gmake reg-tests || (for folder in /tmp/*regtest*/vtc.*; do cat $folder/INFO $folder/LOG; done && exit 1) |
| 15 | |
Ilya Shipitsin | c886e59 | 2019-09-02 00:03:10 +0500 | [diff] [blame] | 16 | centos_6_task: |
| 17 | container: |
| 18 | image: centos:centos6 |
Ilya Shipitsin | 632cae2 | 2019-10-27 20:16:29 +0500 | [diff] [blame] | 19 | only_if: $CIRRUS_BRANCH =~ 'master|next' |
Ilya Shipitsin | c886e59 | 2019-09-02 00:03:10 +0500 | [diff] [blame] | 20 | script: |
| 21 | - yum install -q -y gcc git openssl-devel pcre-devel epel-release |
| 22 | - yum install -q -y python34 |
| 23 | - git clone https://github.com/VTest/VTest.git ../vtest |
| 24 | # Special flags due to: https://github.com/vtest/VTest/issues/12 |
| 25 | - make -C ../vtest FLAGS="-O2 -s -Wall -lrt" |
| 26 | - make CC=cc V=1 TARGET=linux-glibc-legacy USE_ZLIB=1 USE_PCRE=1 USE_OPENSSL=1 |
| 27 | - ./haproxy -vv |
| 28 | - ldd haproxy |
Ilya Shipitsin | bd99f6d | 2019-09-06 23:18:14 +0500 | [diff] [blame] | 29 | # remove alpn reg-test (CentOS 6 does not support alpn) |
| 30 | - rm reg-tests/connection/proxy_protocol_random_fail.vtc |
Ilya Shipitsin | c886e59 | 2019-09-02 00:03:10 +0500 | [diff] [blame] | 31 | - env VTEST_PROGRAM=../vtest/vtest make reg-tests || (for folder in /tmp/*regtest*/vtc.*; do cat $folder/INFO $folder/LOG; done && exit 1) |