json/.travis.yml

28 lines
585 B
YAML
Raw Normal View History

2013-07-04 10:54:16 +02:00
language: cpp
compiler:
2014-12-28 09:11:01 +01:00
- gcc
2014-12-28 11:20:48 +01:00
- clang
2013-07-04 10:54:16 +02:00
2014-12-28 09:11:01 +01:00
before_install:
2014-12-28 09:21:06 +01:00
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update -qq
- if [ "$CXX" = "g++" ]; then sudo apt-get install -qq g++-4.8; fi
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.8" CC="gcc-4.8"; fi
2014-12-28 11:20:48 +01:00
- sudo pip install cpp-coveralls yaml
2014-12-28 09:11:01 +01:00
2013-07-04 10:54:16 +02:00
before_script:
- autoreconf -iv
- ./configure
script:
- make
- make check
2014-12-28 09:11:01 +01:00
after_success:
- make clean
- make json_unit CXXFLAGS="-fprofile-arcs -ftest-coverage"
- ./json_unit
- coveralls --exclude lib --exclude tests --gcov-options '\-lp'
2014-12-28 09:21:06 +01:00