appveyor-windows.yml revision f07b3eae
1version: 1.{branch}.{build} 2 3image: Visual Studio 2017 4 5init: 6 7- cmd: '' 8 9install: 10 11- cmd: >- 12 13 vcpkg install zlib:x64-windows-static 14 15 vcpkg install libevent:x64-windows-static 16 17 vcpkg install pcre:x64-windows-static 18 19 vcpkg install getopt:x64-windows 20 21 vcpkg integrate install 22 23cache: 24- c:\tools\vcpkg\installed 25- boringssl -> appveyor-windows.yml, appveyor-windows.cmd # we define the commit in here 26 27build_script: 28 29- cmd: appveyor-windows.cmd 30 31test_script: 32 33- cmd: msbuild /m RUN_TESTS.vcxproj 34