authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2018-09-18 16:36:31-04:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2018-09-18 16:36:31-04:00
log0ab7cfa023416f2cea22d7b5db1121c938560757
tree5ad69a51dffbf70efe3f17ae2946ac5fb40fce78
parent84b963cb1b7cdc9b78eee315758914a9fae18064
signaturelock-open Commit is signed but in an unrecognized format.

appveyor: use MSVC 2017


2 files changed, 3 insertions(+), 3 deletions(-)

ci/appveyor/appveyor.yml+1-1
......@@ -1,4 +1,4 @@
1image: Visual Studio 2015
1image: Visual Studio 2017
22platform:
33 - x64
44build_script:
ci/appveyor/build_script.bat+2-2
......@@ -16,11 +16,11 @@ SET "ZIGBUILDDIR=%APPVEYOR_BUILD_FOLDER%\build-msvc-release"
1616SET "ZIGPREFIXPATH=%APPVEYOR_BUILD_FOLDER%\llvm+clang-7.0.0-win64-msvc-release"
1717
1818call "C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x64
19call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x86_amd64
19call "C:\Program Files (x86)\Microsoft Visual Studio 15.0\VC\vcvarsall.bat" x86_amd64
2020
2121mkdir %ZIGBUILDDIR%
2222cd %ZIGBUILDDIR%
23cmake.exe .. -Thost=x64 -G"Visual Studio 14 2015 Win64" "-DCMAKE_INSTALL_PREFIX=%ZIGBUILDDIR%" "-DCMAKE_PREFIX_PATH=%ZIGPREFIXPATH%" -DCMAKE_BUILD_TYPE=Release || exit /b
23cmake.exe .. -Thost=x64 -G"Visual Studio 15 2017 Win64" "-DCMAKE_INSTALL_PREFIX=%ZIGBUILDDIR%" "-DCMAKE_PREFIX_PATH=%ZIGPREFIXPATH%" -DCMAKE_BUILD_TYPE=Release || exit /b
2424msbuild /p:Configuration=Release INSTALL.vcxproj || exit /b
2525
2626bin\zig.exe build --build-file ..\build.zig test -Dskip-release || exit /b