2018-12-25 19:35:54 +01:00
dist : xenial
2019-05-28 14:03:03 +02:00
os :
- linux
compiler :
- clang
- gcc
2016-03-12 23:39:43 +01:00
env :
matrix :
- CI_BUILD=cmake
- CI_BUILD=autotools
2019-05-28 14:03:03 +02:00
matrix :
include :
- os : osx
compiler : clang
osx_image : xcode10.2
env : CI_BUILD=autotools
2014-05-27 08:31:22 +02:00
language : cpp
2017-10-23 15:11:19 +02:00
sudo : required
2015-04-22 16:03:29 +02:00
addons :
apt :
sources :
- ubuntu-toolchain-r-test
packages :
2018-11-02 09:26:17 +01:00
- g++-8
2015-04-22 16:03:29 +02:00
- autoconf
- automake
- autotools-dev
- libtool
- pkg-config
- zlib1g-dev
- libcunit1-dev
- libssl-dev
- libxml2-dev
- libev-dev
- libevent-dev
- libjansson-dev
- libjemalloc-dev
2016-12-10 13:04:17 +01:00
- libc-ares-dev
2016-03-12 23:39:43 +01:00
- cmake
- cmake-data
2019-05-28 14:03:03 +02:00
homebrew :
packages :
- libev
- libevent
- c-ares
- cunit
- libressl
2014-05-27 08:31:22 +02:00
before_install :
- $CC --version
2018-11-02 09:26:17 +01:00
- if [ "$CXX" = "g++" ]; then export CXX="g++-8" CC="gcc-8"; fi
2014-05-27 08:31:22 +02:00
- $CC --version
2015-11-23 06:58:17 +01:00
- go version
2016-03-12 23:39:43 +01:00
- cmake --version
2014-05-27 08:31:22 +02:00
before_script :
2019-05-28 14:03:03 +02:00
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then CPPFLAGS=-fsanitize=address LDFLAGS="-fsanitize=address -fuse-ld=gold"; fi
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then PKG_CONFIG_PATH=/usr/local/opt/libressl/lib/pkgconfig:/usr/local/opt/libxml2/lib/pkgconfig; fi
2015-11-23 06:58:17 +01:00
# Now build nghttp2
2016-03-12 23:39:43 +01:00
- if [ "$CI_BUILD" = "autotools" ]; then autoreconf -i; fi
2015-09-05 18:23:11 +02:00
- git submodule update --init
2019-05-28 14:03:03 +02:00
- if [ "$CI_BUILD" = "autotools" ]; then ./configure --with-mruby PKG_CONFIG_PATH=$PKG_CONFIG_PATH; fi
2017-10-23 15:11:19 +02:00
- if [ "$CI_BUILD" = "cmake" ]; then cmake -DENABLE_WERROR=1 -DWITH_MRUBY=1 -DWITH_NEVERBLEED=1; fi
2014-05-27 08:31:22 +02:00
script :
2019-05-28 14:03:03 +02:00
- if [ "$CI_BUILD" = "autotools" ]; then make distcheck DISTCHECK_CONFIGURE_FLAGS="--with-mruby --with-neverbleed --enable-werror CPPFLAGS=$CPPFLAGS LDFLAGS=\"$LDFLAGS\" PKG_CONFIG_PATH=$PKG_CONFIG_PATH"; fi
2016-12-17 14:18:43 +01:00
- if [ "$CI_BUILD" = "cmake" ]; then make check; fi
2016-04-23 13:50:49 +02:00
# As of April, 23, 2016, golang http2 build fails, probably because
# the default go version is too old.
2016-08-27 14:26:03 +02:00
# - cd integration-tests
2016-04-23 13:50:49 +02:00
# - export GOPATH="$PWD/integration-tests/golang"
# - make itprep
# - make it