.travis.yml 1.4 KB
Newer Older
N
Niels 已提交
1 2
language: cpp

N
Niels 已提交
3 4
sudo: false

N
Niels 已提交
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
matrix:
  include:
    - os: linux
      compiler: gcc
      addons:
        apt:
          sources: ['ubuntu-toolchain-r-test']
          packages: ['g++-4.9', 'valgrind', 'python-pip', 'python-yaml']
      before_script:
        - pip install --user git+git://github.com/eddyxu/cpp-coveralls.git
      env: COMPILER=g++-4.9

    - os: linux
      compiler: gcc
      addons:
        apt:
          sources: ['ubuntu-toolchain-r-test']
          packages: ['g++-5', 'valgrind']
      env: COMPILER=g++-5


    - os: linux
      compiler: clang
      addons:
        apt:
          sources: ['ubuntu-toolchain-r-test', 'llvm-toolchain-precise-3.6']
          packages: ['clang-3.6', 'valgrind']
      env: COMPILER=clang++-3.6
N
Niels 已提交
33 34

script:
N
try  
Niels 已提交
35
  - make CXX=$COMPILER CXXFLAGS="-lstdc++"
36
  - ./json_unit "*"
37
  - valgrind --error-exitcode=1 --leak-check=full ./json_unit
N
Niels 已提交
38 39

after_success:
N
Niels 已提交
40 41 42 43 44
  - if [ "$COMPILER" = "g++-4.9" ]; then make clean ; fi
  - if [ "$COMPILER" = "g++-4.9" ]; then touch src/json.hpp ; fi
  - if [ "$COMPILER" = "g++-4.9" ]; then make json_unit CXXFLAGS="-fprofile-arcs -ftest-coverage -std=c++11 -lstdc++" CXX=$COMPILER ; fi
  - if [ "$COMPILER" = "g++-4.9" ]; then ./json_unit "*" ; fi
  - if [ "$COMPILER" = "g++-4.9" ]; then coveralls --exclude test/catch.hpp --exclude test/unit.cpp --include src/json.hpp --gcov-options '\-lp' --gcov 'gcov-4.9' ; fi