-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy path.appveyor.yml
30 lines (21 loc) · 1.13 KB
/
.appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
version: '{build}-{branch}'
branches:
only:
- develop
image:
- Visual Studio 2019
- Visual Studio 2017
build_script:
- cmd: msbuild\msbuild-single.bat
test_script:
- cmd: >-
IF "%APPVEYOR_BUILD_WORKER_IMAGE%"=="Visual Studio 2019" SET VNAME=v142
IF "%APPVEYOR_BUILD_WORKER_IMAGE%"=="Visual Studio 2017" SET VNAME=v141
bld\x64-Release-%VNAME%\gtest-engine-bcrypt.exe
bld\x64-Release-%VNAME%\gtest-engine-ncrypt.exe
bld\x86-Release-%VNAME%\gtest-engine-bcrypt.exe
bld\x86-Release-%VNAME%\gtest-engine-ncrypt.exe
VSTest.Console.exe --Logger:AppVeyor --TestAdapterPath:packages\GoogleTestAdapter.0.18.0\build\_common bld\x64-Debug-%VNAME%\gtest-engine-bcrypt.exe
VSTest.Console.exe --Logger:AppVeyor --TestAdapterPath:packages\GoogleTestAdapter.0.18.0\build\_common bld\x64-Debug-%VNAME%\gtest-engine-ncrypt.exe
VSTest.Console.exe --Logger:AppVeyor --TestAdapterPath:packages\GoogleTestAdapter.0.18.0\build\_common bld\x86-Debug-%VNAME%\gtest-engine-bcrypt.exe
VSTest.Console.exe --Logger:AppVeyor --TestAdapterPath:packages\GoogleTestAdapter.0.18.0\build\_common bld\x86-Debug-%VNAME%\gtest-engine-ncrypt.exe