2017-10-23 15:11:19 +02:00
dist : trusty
2016-03-12 23:39:43 +01:00
env :
matrix :
- CI_BUILD=cmake
- CI_BUILD=autotools
2014-05-27 08:31:22 +02:00
language : cpp
compiler :
- clang
2015-04-22 16:17:21 +02:00
- gcc
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 :
2017-10-23 15:11:19 +02:00
- g++-7
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
2014-05-27 08:31:22 +02:00
before_install :
- $CC --version
2017-10-23 15:11:19 +02:00
- if [ "$CXX" = "g++" ]; then export CXX="g++-7" CC="gcc-7"; 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 :
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
2017-10-23 15:11:19 +02:00
- if [ "$CI_BUILD" = "autotools" ]; then ./configure --with-mruby; fi
- 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 :
2017-10-23 15:11:19 +02:00
- if [ "$CI_BUILD" = "autotools" ]; then make distcheck DISTCHECK_CONFIGURE_FLAGS="--with-mruby --with-neverbleed --enable-werror CPPFLAGS=-fsanitize=address LDFLAGS=\"-fsanitize=address -fuse-ld=gold\""; 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