mirror of
https://github.com/davisking/dlib.git
synced 2024-11-01 10:14:53 +08:00
51 lines
996 B
YAML
51 lines
996 B
YAML
language: cpp
|
|
|
|
packages: &gcc5_pkgs
|
|
- gcc-5
|
|
- g++-5
|
|
- libstdc++6
|
|
|
|
matrix:
|
|
include:
|
|
# build and run all tests
|
|
- compiler: gcc
|
|
env:
|
|
- GCC_VER=5
|
|
- ADDRESS_MODEL=64
|
|
- BUILD_SYSTEM=cmake
|
|
- PATH=$HOME/bin:$PATH
|
|
- VARIANT=test
|
|
addons: &ao_gcc5
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
packages: *gcc5_pkgs
|
|
# build all examples
|
|
- compiler: gcc
|
|
env:
|
|
- GCC_VER=5
|
|
- ADDRESS_MODEL=64
|
|
- BUILD_SYSTEM=cmake
|
|
- PATH=$HOME/bin:$PATH
|
|
- VARIANT=examples
|
|
addons: *ao_gcc5
|
|
|
|
cache:
|
|
directories:
|
|
- cmake
|
|
|
|
before_install:
|
|
- dlib/travis/before-install.sh
|
|
|
|
install:
|
|
- if [ "$CXX" == "g++" ]; then export CXX=g++-$GCC_VER; export CC=gcc-$GCC_VER; fi
|
|
- if [ "$CXX" == "clang++" ]; then export CXX=clang++-$CLANG_VER; export CC=clang-$CLANG_VER; fi
|
|
|
|
script:
|
|
- dlib/travis/build-and-test.sh
|
|
|
|
|
|
#notifications:
|
|
# email:
|
|
# false
|