aboutsummaryrefslogtreecommitdiff
path: root/appveyor.yml
diff options
context:
space:
mode:
authorEven Rouault <even.rouault@spatialys.com>2020-06-02 15:40:39 +0200
committerEven Rouault <even.rouault@spatialys.com>2020-06-03 10:54:04 +0200
commitb59fd03f1185c41015b25cbbf7a88a20825f8996 (patch)
tree22364a19d132ba3d090b1fc2cd920d83ea2aac1f /appveyor.yml
parenta0a44ac57e1afcce26bb8f7e5b7c41bf4661b8ab (diff)
downloadPROJ-b59fd03f1185c41015b25cbbf7a88a20825f8996.tar.gz
PROJ-b59fd03f1185c41015b25cbbf7a88a20825f8996.zip
appveyor.yml: workaround vcpkg upstream build issue with VS2015 (see https://github.com/microsoft/vcpkg/issues/1166) [skip travis]
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml2
1 files changed, 2 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 4e2b967d..dad1f35d 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -23,9 +23,11 @@ cache:
build_script:
- set VCPKG_INSTALLED=C:\Tools\vcpkg\installed\%platform%-windows
# If cached directory does not exist, update vcpkg and install dependencies
+ # The checkout of a precise sha1 for VS2015 is a workaround for https://github.com/microsoft/vcpkg/issues/11666
- if not exist %VCPKG_INSTALLED%\bin (
cd "C:\Tools\vcpkg" &
git pull > nul &
+ (if "%APPVEYOR_BUILD_WORKER_IMAGE%"=="Visual Studio 2015" (git checkout a64dc07690bc8806e717e190f62eb58e198b599c)) &
.\bootstrap-vcpkg.bat -disableMetrics &
vcpkg install sqlite3[core,tool]:"%platform%"-windows &
vcpkg install tiff:"%platform%"-windows &