mirror of
https://github.com/davisking/dlib.git
synced 2024-11-01 10:14:53 +08:00
ac292309c1
* Exposed jitter_image in Python and added an example * Return Numpy array directly * Require numpy during setup * Added install of Numpy before builds * Changed pip install for user only due to security issues. * Removed malloc * Made presence of Numpy during compile optional. * Conflict * Refactored get_face_chip/get_face_chips to use Numpy as well.
17 lines
388 B
YAML
17 lines
388 B
YAML
version: "{build}"
|
|
|
|
configuration: Release
|
|
|
|
build_script:
|
|
# build test
|
|
- mkdir %APPVEYOR_BUILD_FOLDER%\build_test
|
|
- cd %APPVEYOR_BUILD_FOLDER%\build_test
|
|
- pip install numpy
|
|
- cmake -G "Visual Studio 14 2015 Win64" ../dlib/test
|
|
- cmake --build . --config %CONFIGURATION%
|
|
|
|
test_script:
|
|
# run test
|
|
- cd %APPVEYOR_BUILD_FOLDER%\build_test\%CONFIGURATION%
|
|
- dtest --runall
|