2019-10-17 04:53:55 +00:00
|
|
|
# build status appears on https://travis-ci.com/haproxy/haproxy
|
|
|
|
|
2019-10-27 15:16:29 +00:00
|
|
|
dist: bionic
|
2019-04-17 07:41:13 +00:00
|
|
|
|
|
|
|
language: c
|
|
|
|
|
2019-10-17 04:53:55 +00:00
|
|
|
branches:
|
|
|
|
only:
|
|
|
|
- master
|
|
|
|
- next
|
|
|
|
|
2019-05-03 09:31:20 +00:00
|
|
|
env:
|
|
|
|
global:
|
2019-06-15 20:19:27 +00:00
|
|
|
- FLAGS="USE_ZLIB=1 USE_PCRE=1 USE_PCRE_JIT=1 USE_LUA=1 USE_OPENSSL=1 USE_SYSTEMD=1 USE_WURFL=1 WURFL_INC=contrib/wurfl WURFL_LIB=contrib/wurfl USE_DEVICEATLAS=1 DEVICEATLAS_SRC=contrib/deviceatlas USE_51DEGREES=1"
|
2019-05-03 09:31:20 +00:00
|
|
|
- SSL_LIB=${HOME}/opt/lib
|
|
|
|
- SSL_INC=${HOME}/opt/include
|
2019-05-10 10:38:52 +00:00
|
|
|
- TMPDIR=/tmp
|
2019-06-13 15:00:05 +00:00
|
|
|
- FIFTYONEDEGREES_SRC="contrib/51d/src/pattern"
|
2020-04-02 19:07:17 +00:00
|
|
|
- DEBUG_OPTIONS="DEBUG_STRICT=1"
|
2019-05-03 09:31:20 +00:00
|
|
|
|
2019-04-24 14:11:09 +00:00
|
|
|
addons:
|
|
|
|
apt:
|
2020-01-19 07:14:02 +00:00
|
|
|
update: true
|
2020-06-21 11:39:30 +00:00
|
|
|
packages: [ liblua5.3-dev, libsystemd-dev, libpcre2-dev, clang-9, socat, ninja-build ]
|
2020-01-19 07:14:02 +00:00
|
|
|
homebrew:
|
|
|
|
update: true
|
|
|
|
packages: [ socat ]
|
2019-04-24 14:11:09 +00:00
|
|
|
|
2019-05-06 20:42:43 +00:00
|
|
|
cache:
|
|
|
|
directories:
|
|
|
|
- download-cache
|
|
|
|
- ${HOME}/opt
|
|
|
|
|
2019-04-17 07:41:13 +00:00
|
|
|
matrix:
|
|
|
|
include:
|
2020-01-19 07:14:02 +00:00
|
|
|
- os: linux
|
|
|
|
arch: ppc64le
|
2019-08-19 16:32:53 +00:00
|
|
|
if: type == cron
|
2019-05-03 09:31:20 +00:00
|
|
|
compiler: gcc
|
2020-01-19 07:14:02 +00:00
|
|
|
env: TARGET=linux-glibc OPENSSL_VERSION=1.0.2u
|
|
|
|
- os: linux
|
|
|
|
arch: amd64
|
2020-03-18 16:27:39 +00:00
|
|
|
if: type == push
|
2020-01-19 07:14:02 +00:00
|
|
|
compiler: clang
|
2020-04-02 19:20:46 +00:00
|
|
|
env: TARGET=linux-glibc OPENSSL_VERSION=1.1.1f CC=clang-9
|
2020-05-07 15:57:26 +00:00
|
|
|
- os: linux
|
2020-05-15 18:34:46 +00:00
|
|
|
# The ARM64 build uses openssl and libssl-dev from Ubuntu repository. They come preinstalled by TravisCI!
|
2020-05-07 15:57:26 +00:00
|
|
|
arch: arm64
|
|
|
|
if: type == push
|
|
|
|
compiler: clang
|
2020-05-15 18:34:46 +00:00
|
|
|
env: TARGET=linux-glibc OPENSSL_VERSION=1.1.1f CC=clang-9 SSL_LIB=/usr/lib SSL_INC=/usr/include
|
|
|
|
install:
|
|
|
|
- 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"
|
2020-03-13 03:10:31 +00:00
|
|
|
- os: linux
|
|
|
|
arch: s390x
|
2020-03-18 16:27:39 +00:00
|
|
|
if: type == push
|
2020-03-13 03:10:31 +00:00
|
|
|
compiler: gcc
|
2020-04-02 19:20:46 +00:00
|
|
|
env: TARGET=linux-glibc OPENSSL_VERSION=1.1.1f
|
2019-05-03 09:31:20 +00:00
|
|
|
- os: linux
|
2019-08-02 17:59:03 +00:00
|
|
|
if: type == cron
|
|
|
|
compiler: clang
|
2020-04-02 19:20:46 +00:00
|
|
|
env: TARGET=linux-glibc OPENSSL_VERSION=1.1.1f COVERITY_SCAN_PROJECT_NAME="Haproxy" COVERITY_SCAN_BRANCH_PATTERN="*" COVERITY_SCAN_NOTIFICATION_EMAIL="chipitsine@gmail.com" COVERITY_SCAN_BUILD_COMMAND="make CC=clang TARGET=$TARGET $FLAGS 51DEGREES_SRC=$FIFTYONEDEGREES_SRC"
|
2019-08-02 17:59:03 +00:00
|
|
|
script:
|
|
|
|
- |
|
|
|
|
if [ ! -z ${COVERITY_SCAN_TOKEN+x} ]; then
|
|
|
|
make -C contrib/wurfl
|
|
|
|
curl -s "https://scan.coverity.com/scripts/travisci_build_coverity_scan.sh" | bash || true
|
|
|
|
fi
|
|
|
|
- os: linux
|
2019-08-19 16:32:53 +00:00
|
|
|
if: type == cron
|
2019-05-22 15:12:15 +00:00
|
|
|
compiler: clang
|
2020-01-24 06:36:41 +00:00
|
|
|
env: TARGET=linux-glibc OPENSSL_VERSION=1.1.0l FIFTYONEDEGREES_SRC="contrib/51d/src/trie" CC=clang-9
|
2019-05-03 09:31:20 +00:00
|
|
|
- os: linux
|
2020-03-18 16:27:39 +00:00
|
|
|
if: type == push
|
2019-05-22 15:12:15 +00:00
|
|
|
compiler: clang
|
2020-05-09 16:36:04 +00:00
|
|
|
env: TARGET=linux-glibc LIBRESSL_VERSION=3.1.1 CC=clang-9
|
2019-05-03 09:31:20 +00:00
|
|
|
- os: linux
|
2020-04-02 19:07:17 +00:00
|
|
|
env: DEBUG_OPTIONS=""
|
2019-08-19 16:32:53 +00:00
|
|
|
if: type == cron
|
2019-05-22 15:12:15 +00:00
|
|
|
compiler: clang
|
2020-05-09 16:36:04 +00:00
|
|
|
env: TARGET=linux-glibc LIBRESSL_VERSION=3.0.2 CC=clang-9
|
2019-04-24 14:11:09 +00:00
|
|
|
- os: linux
|
2019-08-19 16:32:53 +00:00
|
|
|
if: type == cron
|
2019-05-22 15:12:15 +00:00
|
|
|
compiler: clang
|
2020-05-09 16:36:04 +00:00
|
|
|
env: TARGET=linux-glibc LIBRESSL_VERSION=2.9.2 EXTRA_OBJS="contrib/prometheus-exporter/service-prometheus.o" CC=clang-9
|
2019-05-08 20:15:59 +00:00
|
|
|
- os: linux
|
2019-08-19 16:32:53 +00:00
|
|
|
if: type == cron
|
2019-05-22 15:12:15 +00:00
|
|
|
compiler: clang
|
2020-03-16 07:10:56 +00:00
|
|
|
env: TARGET=linux-glibc BORINGSSL=yes
|
2019-04-17 07:41:13 +00:00
|
|
|
- os: linux
|
2020-03-18 16:27:39 +00:00
|
|
|
if: type == push
|
2019-04-17 07:41:13 +00:00
|
|
|
compiler: clang
|
2020-01-24 06:36:41 +00:00
|
|
|
env: TARGET=linux-glibc FLAGS= CC=clang-9
|
2019-04-24 14:11:09 +00:00
|
|
|
- os: osx
|
2020-03-18 16:27:39 +00:00
|
|
|
if: type == push
|
2019-04-24 14:11:09 +00:00
|
|
|
compiler: clang
|
2020-04-02 19:20:46 +00:00
|
|
|
env: TARGET=osx FLAGS="USE_OPENSSL=1" OPENSSL_VERSION=1.1.1f
|
2019-09-19 18:32:30 +00:00
|
|
|
- os: linux
|
|
|
|
if: type == cron
|
|
|
|
compiler: clang
|
2020-01-24 06:36:41 +00:00
|
|
|
env: TARGET=linux-glibc FLAGS="USE_SLZ=1 USE_PCRE2=1 USE_PCRE2_JIT=1 USE_LUA=1 USE_OPENSSL=1 USE_SYSTEMD=1 USE_WURFL=1 WURFL_INC=contrib/wurfl WURFL_LIB=contrib/wurfl USE_51DEGREES=1" CC=clang-9
|
2019-09-19 18:32:30 +00:00
|
|
|
before_script:
|
2020-05-18 20:47:07 +00:00
|
|
|
- git clone https://github.com/wtarreau/libslz
|
2019-09-19 18:32:30 +00:00
|
|
|
- cd libslz && make && make PREFIX=${HOME}/opt install && cd ..
|
2020-05-07 15:57:26 +00:00
|
|
|
allow_failures:
|
|
|
|
- os: linux
|
|
|
|
arch: arm64
|
|
|
|
if: type == push
|
|
|
|
compiler: clang
|
2019-04-17 07:41:13 +00:00
|
|
|
|
|
|
|
install:
|
|
|
|
- git clone https://github.com/VTest/VTest.git ../vtest
|
2019-04-24 14:11:09 +00:00
|
|
|
# Special flags due to: https://github.com/vtest/VTest/issues/12
|
|
|
|
- make -C ../vtest FLAGS="-O2 -s -Wall"
|
2020-05-15 18:34:46 +00:00
|
|
|
- travis_wait bash -c 'scripts/build-ssl.sh >build-ssl.log 2>&1' || (cat build-ssl.log && exit 1)
|
2019-04-24 14:11:09 +00:00
|
|
|
|
2019-04-17 07:41:13 +00:00
|
|
|
script:
|
2020-03-18 08:35:58 +00:00
|
|
|
- if [ "${CC%-*}" = "clang" ]; then export FLAGS="$FLAGS USE_OBSOLETE_LINKER=1" DEBUG_CFLAGS="-g -fsanitize=address" LDFLAGS="-fsanitize=address"; fi
|
2019-05-22 15:12:15 +00:00
|
|
|
- make -C contrib/wurfl
|
2020-06-13 20:08:37 +00:00
|
|
|
- make -j3 CC=$CC CPU_CFLAGS.generic="-O1" V=1 ERR=1 TARGET=$TARGET $FLAGS DEBUG_CFLAGS="$DEBUG_CFLAGS" LDFLAGS="$LDFLAGS" ADDLIB="-Wl,-rpath,$SSL_LIB" 51DEGREES_SRC="$FIFTYONEDEGREES_SRC" EXTRA_OBJS="$EXTRA_OBJS" $DEBUG_OPTIONS
|
2019-04-24 14:11:09 +00:00
|
|
|
- ./haproxy -vv
|
2019-05-03 09:31:20 +00:00
|
|
|
- if [ "${TRAVIS_OS_NAME}" = "linux" ]; then ldd haproxy; fi
|
|
|
|
- if [ "${TRAVIS_OS_NAME}" = "osx" ]; then otool -L haproxy; fi
|
2020-01-24 16:37:35 +00:00
|
|
|
- make reg-tests VTEST_PROGRAM=../vtest/vtest REGTESTS_TYPES=default,bug,devel
|
2019-04-24 14:11:09 +00:00
|
|
|
|
|
|
|
after_failure:
|
|
|
|
- |
|
2019-05-10 10:38:52 +00:00
|
|
|
for folder in ${TMPDIR}/*regtest*/vtc.*; do
|
2019-04-24 14:11:09 +00:00
|
|
|
cat $folder/INFO
|
|
|
|
cat $folder/LOG
|
|
|
|
done
|