mirror of
https://github.com/davisking/dlib.git
synced 2024-11-01 10:14:53 +08:00
2dd2c92e38
* added basic AppVeyor config * [AppVeyor] /verbosity:minimal
20 lines
643 B
YAML
20 lines
643 B
YAML
version: "{build}"
|
|
|
|
configuration: Release
|
|
|
|
build_script:
|
|
# build test
|
|
- mkdir %APPVEYOR_BUILD_FOLDER%\build_test
|
|
- cd %APPVEYOR_BUILD_FOLDER%\build_test
|
|
- cmake -G "Visual Studio 14 2015 Win64" ../dlib/test
|
|
- cmake --build . --config %CONFIGURATION% --target dtest -- /m /verbosity:minimal
|
|
# build examples
|
|
- mkdir %APPVEYOR_BUILD_FOLDER%\build_examples
|
|
- cd %APPVEYOR_BUILD_FOLDER%\build_examples
|
|
- cmake -G "Visual Studio 14 2015 Win64" ../examples
|
|
- cmake --build . --config %CONFIGURATION% -- /m /verbosity:minimal
|
|
|
|
test_script:
|
|
# run test
|
|
- cd %APPVEYOR_BUILD_FOLDER%\build_test\%CONFIGURATION%
|
|
- dtest --runall |