From 95376d5d003dec349356db91038e7c3625a29e85 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Wed, 23 Aug 2017 16:00:21 -0400 Subject: [PATCH] Try to add AppVeyor Cmake builds for debug and release Take 30 --- .appveyor.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index b1cb095d..d7f9928b 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -44,7 +44,7 @@ test_script: cd cmake-build - cmake -G "Visual Studio 15 2017" -DCMAKE_BUILD_TYPE=$env:configuration ../ + cmake -G "Visual Studio 15 2017" -DCMAKE_BUILD_TYPE=$env:configuration ..\ msbuild /t:Build cryptopp-static.vcxproj @@ -52,6 +52,8 @@ test_script: robocopy $env:APPVEYOR_BUILD_FOLDER\cmake-build\$env:configuration\ $env:APPVEYOR_BUILD_FOLDER\ cryptest.exe + cd $env:APPVEYOR_BUILD_FOLDER\ + .\cryptest.exe v .\cryptest.exe tv all @@ -64,7 +66,7 @@ test_script: cd cmake-build - cmake -G "Visual Studio 14 2015" -DCMAKE_BUILD_TYPE=$env:configuration ../ + cmake -G "Visual Studio 14 2015" -DCMAKE_BUILD_TYPE=$env:configuration ..\ msbuild /t:Build cryptopp-static.vcxproj @@ -72,6 +74,8 @@ test_script: robocopy $env:APPVEYOR_BUILD_FOLDER\cmake-build\$env:configuration\ $env:APPVEYOR_BUILD_FOLDER\ cryptest.exe + cd $env:APPVEYOR_BUILD_FOLDER\ + .\cryptest.exe v .\cryptest.exe tv all @@ -84,7 +88,7 @@ test_script: cd cmake-build - cmake -G "Visual Studio 12 2013" -DCMAKE_BUILD_TYPE=$env:configuration ../ + cmake -G "Visual Studio 12 2013" -DCMAKE_BUILD_TYPE=$env:configuration ..\ msbuild /t:Build cryptopp-static.vcxproj @@ -92,6 +96,8 @@ test_script: robocopy $env:APPVEYOR_BUILD_FOLDER\cmake-build\$env:configuration\ $env:APPVEYOR_BUILD_FOLDER\ cryptest.exe + cd $env:APPVEYOR_BUILD_FOLDER\ + .\cryptest.exe v .\cryptest.exe tv all