nghttp2/.travis.yml

39 lines
685 B
YAML
Raw Normal View History

language: cpp
compiler:
- clang
2015-04-22 16:17:21 +02:00
- gcc
sudo: false
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
2015-04-22 16:47:13 +02:00
- g++-4.9
- libstdc++-4.9-dev
- autoconf
- automake
- autotools-dev
- libtool
- pkg-config
- zlib1g-dev
- libcunit1-dev
- libssl-dev
- libxml2-dev
- libev-dev
- libevent-dev
- libjansson-dev
- libjemalloc-dev
before_install:
- $CC --version
2015-04-22 16:47:13 +02:00
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.9" CC="gcc-4.9"; fi
- $CC --version
before_script:
- autoreconf -i
- automake
- autoconf
- git submodule update --init
- ./configure --enable-werror --with-mruby
script:
- make
2014-08-08 13:20:48 +02:00
- make check