dlib/.travis.yml

44 lines
739 B
YAML
Raw Normal View History

2016-10-15 02:44:31 +08:00
2018-01-18 09:18:47 +08:00
matrix:
include:
###################
- language: cpp
compiler:
- gcc
os: linux
env:
- VARIANT=test
script:
- dlib/travis/build-and-test.sh
2018-01-18 09:03:17 +08:00
2018-01-18 09:18:47 +08:00
###################
- language: cpp
compiler:
- gcc
os: linux
env:
- VARIANT=examples
script:
- dlib/travis/build-and-test.sh
###################
- language: python
2018-01-18 09:24:00 +08:00
python: 2.7
2018-01-18 09:18:47 +08:00
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
2016-10-15 02:44:31 +08:00