diff options
| author | Billy O'Neal <bion@microsoft.com> | 2020-05-19 17:02:19 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-19 17:02:19 -0700 |
| commit | 9b4535e7ee7673fb8515d1f4f256990423a0d952 (patch) | |
| tree | f4d290d608a90d7857b977789d8ed1b3f65676e6 /scripts | |
| parent | 00434687ebfc70124795edd504e183df3ebe585c (diff) | |
| download | vcpkg-9b4535e7ee7673fb8515d1f4f256990423a0d952.tar.gz vcpkg-9b4535e7ee7673fb8515d1f4f256990423a0d952.zip | |
Fix CMake PATH that fails Windows tests. (#11453)
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/azure-pipelines/windows/run-tests.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/azure-pipelines/windows/run-tests.yml b/scripts/azure-pipelines/windows/run-tests.yml index e6c27f70d..6ea80ac2c 100644 --- a/scripts/azure-pipelines/windows/run-tests.yml +++ b/scripts/azure-pipelines/windows/run-tests.yml @@ -16,7 +16,7 @@ jobs: call .\bootstrap-vcpkg.bat
.\vcpkg.exe fetch cmake
.\vcpkg.exe fetch ninja
- set PATH=downloads\tools\cmake-3.14.0-windows\cmake-3.14.0-win32-x86\bin;downloads\tools\ninja-1.10.0-windows;%PATH%
+ set PATH=downloads\tools\cmake-3.17.2-windows\cmake-3.17.2-win32-x86\bin;downloads\tools\ninja-1.10.0-windows;%PATH%
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\Tools\VsDevCmd.bat" -arch=x86 -host_arch=x86
rmdir /s /q build.x86.debug > nul 2> nul
cmake.exe -G Ninja -DCMAKE_BUILD_TYPE=Debug -DBUILD_TESTING=ON -DVCPKG_DEVELOPMENT_WARNINGS=ON -DVCPKG_WARNINGS_AS_ERRORS=ON -DVCPKG_BUILD_FUZZING=ON -B build.x86.debug -S toolsrc
|
