summaryrefslogtreecommitdiffstats
path: root/ml/dlib/.travis.yml
blob: 4604fbaac4bd156c473da16bde8c0ab000804ad2 (plain)
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
104
105
106
107
sudo: required

matrix:
  include:
    ###################
    - language: cpp
      compiler: clang
      os: linux
      env:
        - VARIANT=test
      script:
        - dlib/travis/build-and-test.sh

    ###################
    - language: cpp
      compiler: clang
      os: linux
      env:
        - VARIANT=examples
      script:
        - dlib/travis/build-and-test.sh

    ###################
    - language: cpp
      compiler: gcc
      os: linux
      env:
        - VARIANT=test
      script:
        - dlib/travis/build-and-test.sh

    ###################
    - language: cpp
      compiler: gcc
      os: linux
      env:
        - VARIANT=tools
      script:
        - dlib/travis/build-and-test.sh

    ###################
    - language: cpp
      compiler: gcc
      os: linux
      env:
        - VARIANT=dlib_all_source_cpp
      script:
        - dlib/travis/build-and-test.sh

    ########### test with C++17 ########
    - language: cpp
      compiler: gcc
      os: linux
      env:
        - VARIANT=test
        - CXXFLAGS=-std=c++17
          # Need to set MATRIX_EVAL to set CC and CXX env vars.  You would
          # think you could just set them in the env area like any other, but
          # travis is wonky about CC and CXX vars so you have to do it this way.
        - MATRIX_EVAL="CC=gcc-7 && CXX=g++-7"
      addons:
        apt:
          sources:
            - ubuntu-toolchain-r-test
          packages:
            - g++-7
      script:
        - dlib/travis/build-and-test.sh

    ###################
    - language: cpp
      compiler: gcc
      os: linux
      env:
        - VARIANT=examples
      script:
        - dlib/travis/build-and-test.sh

    ###################
    - language: python
      python: 2.7
      env:
        - VARIANT=python-api
      script:
        - dlib/travis/build-and-test.sh

    ###################
    - language: python
      python: 3.5
      env:
        - VARIANT=python-api
      script:
        - dlib/travis/build-and-test.sh

    ###################
    # # Disabled because travis's OS X machines take hours (or days) to begin
    # running.  Or maybe they are just broken entirely.  Who knows.
    #- language: cpp
    #  os: osx
    #  osx_image: xcode9.2
    #  env:
    #    - VARIANT=test
    #  script:
    #    - dlib/travis/build-and-test.sh