84 lines
1.8 KiB
YAML
84 lines
1.8 KiB
YAML
version: master.{build}
|
|
image:
|
|
- Visual Studio 2022
|
|
- Visual Studio 2019
|
|
configuration:
|
|
- Debug
|
|
- Release
|
|
platform:
|
|
- x64
|
|
- x86
|
|
|
|
for:
|
|
-
|
|
matrix:
|
|
only:
|
|
- image: Visual Studio 2022
|
|
configuration: Debug
|
|
platform: x64
|
|
environment:
|
|
UnitTestsFile: UnitTests\x64\Debug\UnitTests.dll
|
|
-
|
|
matrix:
|
|
only:
|
|
- image: Visual Studio 2022
|
|
configuration: Release
|
|
platform: x64
|
|
environment:
|
|
UnitTestsFile: UnitTests\x64\Release\UnitTests.dll
|
|
-
|
|
matrix:
|
|
only:
|
|
- image: Visual Studio 2022
|
|
configuration: Debug
|
|
platform: x86
|
|
environment:
|
|
UnitTestsFile: UnitTests\Debug\UnitTests.dll
|
|
-
|
|
matrix:
|
|
only:
|
|
- image: Visual Studio 2022
|
|
configuration: Release
|
|
platform: x86
|
|
environment:
|
|
UnitTestsFile: UnitTests\Release\UnitTests.dll
|
|
-
|
|
matrix:
|
|
only:
|
|
- image: Visual Studio 2019
|
|
configuration: Debug
|
|
platform: x64
|
|
environment:
|
|
UnitTestsFile: UnitTests\x64\Debug\UnitTests.dll
|
|
-
|
|
matrix:
|
|
only:
|
|
- image: Visual Studio 2019
|
|
configuration: Release
|
|
platform: x64
|
|
environment:
|
|
UnitTestsFile: UnitTests\x64\Release\UnitTests.dll
|
|
-
|
|
matrix:
|
|
only:
|
|
- image: Visual Studio 2019
|
|
configuration: Debug
|
|
platform: x86
|
|
environment:
|
|
UnitTestsFile: UnitTests\Debug\UnitTests.dll"
|
|
-
|
|
matrix:
|
|
only:
|
|
- image: Visual Studio 2019
|
|
configuration: Release
|
|
platform: x86
|
|
environment:
|
|
UnitTestsFile: UnitTests\Release\UnitTests.dll
|
|
|
|
build:
|
|
project: UnitTests\UnitTests.sln
|
|
parallel: true
|
|
verbosity: minimal
|
|
test_script:
|
|
- cmd: vstest.console /logger:Appveyor %UnitTestsFile%
|