.travis.yml 749 Bytes
Newer Older
1
2


Davis King's avatar
travis  
Davis King committed
3
4
5
6
7
8
9
10
11
12
13
matrix:
  include:
    ###################
    - language: cpp
      compiler: 
        - gcc
      os: linux
      env:
        - VARIANT=test
      script:
        - dlib/travis/build-and-test.sh
Davis King's avatar
travis  
Davis King committed
14

Davis King's avatar
travis  
Davis King committed
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
    ###################
    - 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: cpp
      os: osx
      osx_image: xcode9.2
      env:
        - VARIANT=test
      script:
        - dlib/travis/build-and-test.sh
         
43
44