nghttp2/.travis.yml

37 lines
822 B
YAML
Raw Normal View History

language: cpp
compiler:
- clang
- gcc
python:
- "3.4"
before_install:
- $CC --version
- sudo add-apt-repository --yes ppa:ubuntu-toolchain-r/test
- sudo apt-get update -qq
2014-07-20 15:25:26 +02:00
#Install and use gcc-4.9 (don't build with gcc < 4.8.3)
#libstdc++-4.9 is needed by Clang to build too
- sudo apt-get -qq install g++-4.9 libstdc++-4.9-dev
- >
sudo apt-get install --no-install-recommends -qq
autoconf
automake
autotools-dev
libtool
pkg-config
zlib1g-dev
libcunit1-dev
libssl-dev
libxml2-dev
libevent-dev
libjansson-dev
libjemalloc-dev
2014-07-20 15:25:26 +02:00
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.9" CC="gcc-4.9"; fi
- $CC --version
before_script:
- autoreconf -i
- automake
- autoconf
- ./configure --enable-werror
script:
- make