Split appveyor build scripts into parts so they don't error out from being too big.

This commit is contained in:
Davis King 2017-12-17 08:23:43 -05:00
parent a1ee6c429e
commit 9a6a66fec0
2 changed files with 14 additions and 1 deletions

View File

@ -7,7 +7,7 @@ build_script:
- mkdir %APPVEYOR_BUILD_FOLDER%\build_test
- cd %APPVEYOR_BUILD_FOLDER%\build_test
- cmake -G "Visual Studio 14 2015 Win64" -T host=x64 ../dlib/test
- cmake --build . --config %CONFIGURATION%
- cmake --build . --config %CONFIGURATION% --target dtest
test_script:
# run test

View File

@ -0,0 +1,13 @@
version: "{build}"
configuration: Release
build_script:
# build test
- mkdir %APPVEYOR_BUILD_FOLDER%\build_examples
- cd %APPVEYOR_BUILD_FOLDER%\build_examples
- cmake -G "Visual Studio 14 2015 Win64" -T host=x64 ../examples
- cmake --build . --config %CONFIGURATION%
test_script:
# run test