.travis.yml 7.6 KB
Newer Older
N
Niels 已提交
1 2 3 4 5
#########################
# project configuration #
#########################

# C++ project
N
Niels 已提交
6 7
language: cpp

N
Niels 已提交
8 9
dist: trusty
sudo: required
N
Niels 已提交
10

N
Niels 已提交
11

N
Niels 已提交
12 13 14
################
# build matrix #
################
N
Niels 已提交
15

N
Niels 已提交
16 17
matrix:
  include:
N
Niels 已提交
18

N
Niels 已提交
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
  # OSX / Clang

  - os: osx
    osx_image: beta-xcode6.1

  - os: osx
    osx_image: beta-xcode6.2

  - os: osx
    osx_image: beta-xcode6.3

  - os: osx
    osx_image: xcode6.4

  - os: osx
    osx_image: xcode7.1

  - os: osx
    osx_image: xcode7.2

N
Niels 已提交
39 40 41 42 43 44
  - os: osx
    osx_image: xcode7.3

  - os: osx
    osx_image: xcode8

N
Niels 已提交
45 46
  # Linux / GCC

N
Niels 已提交
47 48
  - os: linux
    compiler: gcc
N
Niels 已提交
49 50 51
    env: COMPILER=g++-4.9
    addons:
      apt:
N
Niels 已提交
52
        sources: ['ubuntu-toolchain-r-test']
N
Niels 已提交
53 54 55 56 57 58 59
        packages: g++-4.9

  - os: linux
    compiler: gcc
    env: COMPILER=g++-5
    addons:
      apt:
N
Niels 已提交
60
        sources: ['ubuntu-toolchain-r-test']
N
Niels 已提交
61
        packages: g++-5
N
Niels 已提交
62

N
Niels 已提交
63 64 65 66 67 68 69 70
  - os: linux
    compiler: gcc
    env: COMPILER=g++-6
    addons:
      apt:
        sources: ['ubuntu-toolchain-r-test']
        packages: g++-6

N
Niels 已提交
71 72 73 74 75 76 77 78 79 80 81 82 83 84

#####################
# installation step #
#####################

install:
  - if [[ "${COMPILER}" != "" ]]; then export CXX=${COMPILER}; fi


################
# build script #
################

script:
N
Niels 已提交
85 86
  - uname -a
  - $CXX --version
N
Niels 已提交
87 88
  - make
  - test/json_unit
N
Niels 已提交
89 90 91 92 93 94
  - if [ `which brew` ]; then
    brew update ;
    brew tap nlohmann/json ;
    brew install nlohmann_json --HEAD ;
    brew test nlohmann_json ;
    fi
N
Niels 已提交
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109

#language: cpp
#
#dist: trusty
#sudo: required
#
#env:
#  global:
#   # The next declaration is the encrypted COVERITY_SCAN_TOKEN, created
#   #   via the "travis encrypt" command using the project repo's public key
#   - secure: "m89SSgE+ASLO38rSKx7MTXK3n5NkP9bIx95jwY71YEiuFzib30PDJ/DifKnXxBjvy/AkCGztErQRk/8ZCvq+4HXozU2knEGnL/RUitvlwbhzfh2D4lmS3BvWBGS3N3NewoPBrRmdcvnT0xjOGXxtZaJ3P74TkB9GBnlz/HmKORA="
#
## from http://stackoverflow.com/a/32127147/266378
#matrix:
#  include:
N
Niels 已提交
110
#    - os: linux
N
Niels 已提交
111
#      compiler: gcc
N
Niels 已提交
112 113
#      addons:
#        apt:
N
Niels 已提交
114 115 116 117 118 119 120 121 122 123 124
#          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
#      after_success:
#        - make clean
#        - touch src/json.hpp
#        - make json_unit CXXFLAGS="-fprofile-arcs -ftest-coverage -std=c++11 -lstdc++" CXX=$COMPILER
#        - test/json_unit "*"
#        - coveralls --build-root test --exclude src/catch.hpp --exclude src/unit-algorithms.cpp --exclude src/unit-allocator.cpp --exclude src/unit-capacity.cpp --exclude src/unit-class_const_iterator.cpp --exclude src/unit-class_iterator.cpp --exclude src/unit-class_lexer.cpp --exclude src/unit-class_parser.cpp --exclude src/unit-comparison.cpp --exclude src/unit-concepts.cpp --exclude src/unit-constructor1.cpp --exclude src/unit-constructor2.cpp --exclude src/unit-convenience.cpp --exclude src/unit-conversions.cpp --exclude src/unit-deserialization.cpp --exclude src/unit-element_access1.cpp --exclude src/unit-element_access2.cpp --exclude src/unit-inspection.cpp --exclude src/unit-iterator_wrapper.cpp --exclude src/unit-iterators1.cpp --exclude src/unit-iterators2.cpp --exclude src/unit-json_patch.cpp --exclude src/unit-json_pointer.cpp --exclude src/unit-modifiers.cpp --exclude src/unit-pointer_access.cpp --exclude src/unit-readme.cpp --exclude src/unit-reference_access.cpp --exclude src/unit-regression.cpp --exclude src/unit-serialization.cpp --exclude src/unit-testsuites.cpp --exclude src/unit-unicode.cpp --include ../src/json.hpp --gcov-options '\-lp' --gcov 'gcov-4.9'
#      env: COMPILER=g++-4.9  
N
Niels 已提交
125 126
#
#    - os: linux
N
Niels 已提交
127 128
#      compiler: gcc
#      before_install: echo -n | openssl s_client -connect scan.coverity.com:443 | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' | sudo tee -a /etc/ssl/certs/ca-certificates.crt
N
Niels 已提交
129 130
#      addons:
#        apt:
N
Niels 已提交
131 132 133 134 135 136 137 138 139 140 141
#          sources: ['ubuntu-toolchain-r-test']
#          packages: ['g++-5', 'valgrind']
#        coverity_scan:
#          project:
#            name: "nlohmann/json"
#            description: "Build submitted via Travis CI"
#          notification_email: niels.lohmann@gmail.com
#          build_command_prepend: "make clean ; sudo cp $(which g++-5) $(which g++)"
#          build_command: "make"
#          branch_pattern: coverity_scan
#      env: COMPILER=g++-5
N
Niels 已提交
142 143
#
#    - os: linux
N
Niels 已提交
144
#      compiler: gcc
N
Niels 已提交
145 146
#      addons:
#        apt:
N
Niels 已提交
147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271
#          sources: ['ubuntu-toolchain-r-test']
#          packages: ['g++-6', 'valgrind']
#      env: COMPILER=g++-6
#
#    # from https://github.com/travis-ci/travis-ci/issues/6120
#    - os: linux
#      env:
#        - LLVM_VERSION=3.8.0
#        - LLVM_ARCHIVE_PATH=$HOME/clang+llvm.tar.xz
#        - COMPILER=clang++
#        - CPPFLAGS="-I $HOME/clang-$LLVM_VERSION/include/c++/v1"
#        - LDFLAGS=-lc++
#        - PATH=$HOME/clang-$LLVM_VERSION/bin:$PATH
#        - LD_LIBRARY_PATH=$HOME/clang-$LLVM_VERSION/lib:$LD_LIBRARY_PATH
#      before_install:
#       - wget http://llvm.org/releases/$LLVM_VERSION/clang+llvm-$LLVM_VERSION-x86_64-linux-gnu-ubuntu-14.04.tar.xz -O $LLVM_ARCHIVE_PATH
#       - mkdir $HOME/clang-$LLVM_VERSION
#       - tar xf $LLVM_ARCHIVE_PATH -C $HOME/clang-$LLVM_VERSION --strip-components 1
#
#    # Clang 3.5 is not able to compile the code,
#    # see https://travis-ci.org/nlohmann/json/jobs/126720186
#
##    - 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
##
##    - os: linux
##      compiler: clang
##      addons:
##        apt:
##          sources: ['ubuntu-toolchain-r-test', 'llvm-toolchain-precise-3.7']
##          packages: ['clang-3.7', 'valgrind']
##      env: COMPILER=clang++-3.7
##
##    - os: linux
##      compiler: clang
##      addons:
##        apt:
##          sources: ['ubuntu-toolchain-r-test', 'llvm-toolchain-precise-3.8']
##          packages: ['clang-3.8', 'valgrind']
##      env: COMPILER=clang++-3.8
#
#  #  - os: linux
#  #    compiler: clang
#  #    addons:
#  #      apt:
#  #        sources: ['ubuntu-toolchain-r-test', 'llvm-toolchain-precise']
#  #        packages: ['clang-3.9', 'valgrind']
#  #    env: COMPILER=clang++-3.9
#
#    - os: osx
#      osx_image: beta-xcode6.1
#      compiler: clang
#      env:
#       - COMPILER=clang
#       - CXXFLAGS=-lstdc++
#
#    - os: osx
#      osx_image: beta-xcode6.2
#      compiler: clang
#      env:
#       - COMPILER=clang
#       - CXXFLAGS=-lstdc++
#
#    - os: osx
#      osx_image: beta-xcode6.3
#      compiler: clang
#      env:
#       - COMPILER=clang
#       - CXXFLAGS=-lstdc++
#
#    - os: osx
#      osx_image: xcode6.4
#      compiler: clang
#      env:
#       - COMPILER=clang
#       - CXXFLAGS=-lstdc++
#
#    - os: osx
#      osx_image: xcode7.1
#      compiler: clang
#      env:
#       - COMPILER=clang
#       - CXXFLAGS=-lstdc++
#     
#    - os: osx
#      osx_image: xcode7.2
#      compiler: clang
#      env:
#       - COMPILER=clang
#       - CXXFLAGS=-lstdc++
#
#    - os: osx
#      osx_image: xcode7.3
#      compiler: clang
#      env:
#       - COMPILER=clang
#       - CXXFLAGS=-lstdc++
#
#    - os: osx
#      osx_image: xcode8
#      compiler: clang
#      env:
#       - COMPILER=clang
#       - CXXFLAGS=-lstdc++
#
#script:
#  - uname -a
#  - $COMPILER --version
#  - make CXX=$COMPILER
#  - test/json_unit "*"
#  - if [ `which valgrind` ]; then
#    valgrind --error-exitcode=1 --leak-check=full test/json_unit ;
#    fi
#  - if [ `which brew` ]; then
#    brew update ;
#    brew tap nlohmann/json ;
#    brew install nlohmann_json --HEAD ;
#    brew test nlohmann_json ;
#    fi
#