mirror of
https://github.com/microsoft/GSL.git
synced 2024-11-03 17:56:43 -05:00
Suppress output of git pull; remove vcpkg from cache
This commit is contained in:
parent
a7ec3a85ab
commit
eb936dab34
10
appveyor.yml
10
appveyor.yml
@ -32,7 +32,6 @@ matrix:
|
||||
|
||||
cache:
|
||||
- C:\cmake-3.8.0-win32-x86
|
||||
- C:\Tools\vcpkg
|
||||
|
||||
install:
|
||||
- ps: |
|
||||
@ -43,15 +42,16 @@ install:
|
||||
}
|
||||
$env:PATH="C:\cmake-3.8.0-win32-x86\bin;$env:PATH"
|
||||
}
|
||||
# Until vcpkg has been updated.
|
||||
# Note: vcpkg can also be removed from "cache".
|
||||
# Workaround for lld bug with vcpkg integration
|
||||
if ($env:USE_TOOLSET -eq "LLVM" -and
|
||||
(Get-Content C:\Tools\vcpkg\toolsrc\VERSION.txt).Replace('.','').Trim('"') -lt 20181020
|
||||
) {
|
||||
echo "Updating vcpkg..."
|
||||
cd C:\Tools\vcpkg
|
||||
git pull
|
||||
git pull > $NULL
|
||||
cd "$env:APPVEYOR_BUILD_FOLDER"
|
||||
}
|
||||
} else { echo "==> vcpkg has been updated, please remove the workaround from appvayor.yml." }
|
||||
# /Workaround
|
||||
|
||||
before_build:
|
||||
- ps: |
|
||||
|
Loading…
Reference in New Issue
Block a user