mirror of
https://github.com/davisking/dlib.git
synced 2024-11-01 10:14:53 +08:00
Better travis python testing.
This commit is contained in:
parent
a80f31a8f6
commit
7d3397db5b
@ -60,6 +60,8 @@ matrix:
|
||||
- boost-latest
|
||||
packages:
|
||||
- libboost-python1.55-dev
|
||||
- python3
|
||||
- python3-pip
|
||||
- *gcc5_pkgs
|
||||
|
||||
cache:
|
||||
|
@ -16,16 +16,25 @@ if [ "$VARIANT" = "examples" ]; then
|
||||
fi
|
||||
|
||||
if [ "$VARIANT" = "python-api" ]; then
|
||||
../cmake/bin/cmake ../tools/python -DCMAKE_BUILD_TYPE=Release
|
||||
../cmake/bin/cmake --build . --target install -- -j 2
|
||||
../python_examples/svm_rank.py
|
||||
|
||||
rm -rf *
|
||||
pip install --user numpy
|
||||
../cmake/bin/cmake ../tools/python -DCMAKE_BUILD_TYPE=Release
|
||||
../cmake/bin/cmake --build . --target install -- -j 2
|
||||
|
||||
../python_examples/svm_rank.py
|
||||
fi
|
||||
|
||||
if [ "$VARIANT" = "python3-api" ]; then
|
||||
../cmake/bin/cmake ../tools/python -DPYTHON3=ON -DCMAKE_BUILD_TYPE=Release
|
||||
../cmake/bin/cmake --build . --target install -- -j 2
|
||||
python3 ../python_examples/svm_rank.py
|
||||
|
||||
pip3 install --user numpy
|
||||
rm -rf *
|
||||
../cmake/bin/cmake ../tools/python -DPYTHON3=ON -DCMAKE_BUILD_TYPE=Release
|
||||
../cmake/bin/cmake --build . --target install -- -j 2
|
||||
python3 ../python_examples/svm_rank.py
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user