mirror of
https://github.com/shadps4-emu/ext-cryptopp.git
synced 2024-11-27 11:50:29 +00:00
2fba69fb16
Without the additional CRLF, Appveyor dies with on the command . The odd thing is, YAML validated OK.
32 lines
542 B
YAML
32 lines
542 B
YAML
# Appveyor's documentation is at https://www.appveyor.com/docs/build-phase/,
|
|
# and a sample configuration file is at https://www.appveyor.com/docs/appveyor-yml/.
|
|
# I have to admit its a bit complex and I don't fully understand it.
|
|
|
|
version: 1.0.{build}
|
|
clone_depth: 3
|
|
|
|
configuration:
|
|
|
|
- Debug
|
|
- Release
|
|
|
|
platform:
|
|
|
|
- Win32
|
|
- Win64
|
|
|
|
build:
|
|
|
|
project: cryptest.sln
|
|
verbosity: minimal
|
|
|
|
test_script:
|
|
|
|
- cmd: >-
|
|
|
|
msbuild /t:CopyCryptestToRoot cryptest.vcxproj
|
|
|
|
cryptest.exe v
|
|
|
|
cryptest.exe tv all
|