diff --git a/ci/appveyor/appveyor.yml b/ci/appveyor/appveyor.yml index 2009f92e43..de8b621bac 100644 --- a/ci/appveyor/appveyor.yml +++ b/ci/appveyor/appveyor.yml @@ -7,3 +7,4 @@ after_build: - '%APPVEYOR_BUILD_FOLDER%\ci\appveyor\after_build.bat' cache: - 'llvm+clang-5.0.0-win64-msvc-release.tar.xz' + - 'llvm+clang-5.0.1-win64-msvc-release.tar.xz' diff --git a/ci/appveyor/build_script.bat b/ci/appveyor/build_script.bat index 98786d9866..3c419bca55 100644 --- a/ci/appveyor/build_script.bat +++ b/ci/appveyor/build_script.bat @@ -10,6 +10,7 @@ SET "APPVEYOR_CACHE_ENTRY_ZIP_ARGS=-m0=Copy" bash -lc "cd ${APPVEYOR_BUILD_FOLDER} && if [ -s ""llvm+clang-5.0.1-win64-msvc-release.tar.xz"" ]; then echo 'skipping LLVM download'; else wget 'https://s3.amazonaws.com/ziglang.org/deps/llvm%%2bclang-5.0.1-win64-msvc-release.tar.xz'; fi && tar xf llvm+clang-5.0.1-win64-msvc-release.tar.xz" || exit /b +SET "VCINSTALLDIR=C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\" SET "PATH=%PREVPATH%" SET "MSYSTEM=%PREVMSYSTEM%" SET "ZIGBUILDDIR=%APPVEYOR_BUILD_FOLDER%\build-msvc-release"