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 |
| 4 | env: |
| 5 | ASSUME_ALWAYS_YES: TRUE # required for unattended "pkg" invocation |
| 6 | script: |
| 7 | - pkg install openssl111 git gmake lua53 |
| 8 | - git clone https://github.com/VTest/VTest.git ../vtest |
| 9 | - make -C ../vtest |
| 10 | - 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 |
| 11 | - ./haproxy -vv |
| 12 | - ldd haproxy |
| 13 | - env VTEST_PROGRAM=../vtest/vtest gmake reg-tests || (for folder in /tmp/*regtest*/vtc.*; do cat $folder/INFO $folder/LOG; done && exit 1) |
| 14 | |