Commit 82b8f8b4 authored by Davis King's avatar Davis King

more travis testing

parent f8f7962b
......@@ -4,18 +4,27 @@ matrix:
include:
###################
- language: cpp
compiler:
- gcc
compiler: clang
os: linux
env:
- VARIANT=test
- CXX=clang++
- CC=clang
script:
- dlib/travis/build-and-test.sh
###################
- language: cpp
compiler:
- gcc
compiler: gcc
os: linux
env:
- VARIANT=test
script:
- dlib/travis/build-and-test.sh
###################
- language: cpp
compiler: gcc
os: linux
env:
- VARIANT=examples
......@@ -30,6 +39,14 @@ matrix:
script:
- dlib/travis/build-and-test.sh
###################
- language: python
python: 3.5
env:
- VARIANT=python-api
script:
- dlib/travis/build-and-test.sh
###################
- language: cpp
os: osx
......
......@@ -20,12 +20,12 @@ fi
if [ "$VARIANT" = "python-api" ]; then
python setup.py test --clean
pip install --user numpy
pip install numpy
python setup.py test --clean
fi
if [ "$VARIANT" = "python3-api" ]; then
python3 setup.py test --clean
pip3 install --user numpy
pip3 install numpy
python3 setup.py test --clean
fi
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment