File: .travis.yml

package info (click to toggle)
docopt.cpp 0.6.3-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 236 kB
  • sloc: cpp: 1,502; python: 57; sh: 20; makefile: 13
file content (103 lines) | stat: -rw-r--r-- 2,928 bytes parent folder | download
1
2
3
4
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
language: cpp
sudo: false   # Use the new container infrastructure

matrix:
  include:
    - os: linux
      env:
        - COMPILER=g++-7
      addons:
        apt:
          sources: ['ubuntu-toolchain-r-test']
          packages: ["g++-7", "cmake-data", "cmake"]
    - os: linux
      env:
        - COMPILER=g++-8
      addons:
        apt:
          sources: ['ubuntu-toolchain-r-test']
          packages: ["g++-8", "cmake-data", "cmake"]
    - os: linux
      env:
        - COMPILER=g++-9
      addons:
        apt:
          sources: ['ubuntu-toolchain-r-test']
          packages: ["g++-9", "cmake-data", "cmake"]
    - os: linux
      env:
        - COMPILER=g++-9 USE_BOOST_REGEX=ON
      addons:
        apt:
          sources: ['ubuntu-toolchain-r-test']
          packages: ["g++-9", "cmake-data", "cmake", "libboost-regex-dev"]

    - os: linux
      env:
        - COMPILER=clang++-3.6 STDLIB=libc++
      addons:
        apt:
          sources: ['ubuntu-toolchain-r-test', 'llvm-toolchain-precise-3.6', 'george-edison55-precise-backports']
          packages: ["clang-3.6", "cmake-data", "cmake"]

    - os: linux
      env:
        - COMPILER=clang++-8 STDLIB=libc++
      addons:
        apt:
          sources: ['ubuntu-toolchain-r-test', 'llvm-toolchain-trusty-8']
          packages: ["clang-8", "cmake-data", "cmake"]

    - os: osx
      osx_image: xcode9.4
      env:
        - COMPILER=clang++ V='Apple LLVM 9.1'
        - COMPILER=clang++ V='Apple LLVM 9.1' WITH_CPP14=true

    - os: osx
      osx_image: xcode10.3
      env:
        - COMPILER=clang++ V='Apple LLVM 10.0'
        - COMPILER=clang++ V='Apple LLVM 10.0' WITH_CPP14=true
    - os: osx
      osx_image: xcode11.2
      env:
        - COMPILER=clang++ V='Apple LLVM 11.0'
        - COMPILER=clang++ V='Apple LLVM 11.0' WITH_CPP14=true
    - os: osx
      osx_image: xcode11.2
      env:
        - COMPILER=clang++ V='Apple LLVM 11.0'
        - COMPILER=clang++ V='Apple LLVM 11.0' WITH_CPP17=true

before_install:
  - CMAKE_CXX_FLAGS+=" -Wall"
  - |
    if [[ "${WITH_CPP14}" == "true" ]]; then
        CMAKE_OPTIONS+=" -DCMAKE_CXX_STANDARD=14"
    fi
  - |
    if [[ "${WITH_CPP17}" == "true" ]]; then
        CMAKE_OPTIONS+=" -DCMAKE_CXX_STANDARD=17"
    fi
  - |
    if [[ "${USE_BOOST_REGEX}" == "ON" ]]; then
        CMAKE_OPTIONS+=" -DUSE_BOOST_REGEX=ON"
        CMAKE_OPTIONS+=" -DBoost_REGEX_LIBRARY_DEBUG=/usr/lib/x86_64-linux-gnu/libboost_regex.so"
        CMAKE_OPTIONS+=" -DBoost_REGEX_LIBRARY_RELEASE=/usr/lib/x86_64-linux-gnu/libboost_regex.so"
    fi
  - |
    if [[ "${STDLIB}" == "libc++" ]]; then
        CMAKE_CXX_FLAGS+=" -stdlib=libc++"
    fi
  - ${COMPILER} --version

before_script:
  - rm -rf build/
  - mkdir build
  - cd build
  - cmake -DCMAKE_CXX_COMPILER=${COMPILER} -DCMAKE_CXX_FLAGS=${CMAKE_CXX_FLAGS} -DWITH_TESTS=1 -DWITH_EXAMPLE=1 ${CMAKE_OPTIONS} ..

script:
  - cmake --build .
  - python run_tests