Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/marian-nmt/marian.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoman Grundkiewicz <rogrundk@microsoft.com>2021-07-22 19:36:43 +0300
committerRoman Grundkiewicz <rogrundk@microsoft.com>2021-07-22 19:36:43 +0300
commitb83b06fb73e6f8ec8bcfcb6b3781c749cce83024 (patch)
tree8518e2e3e5cdfec8fbabe6a9f5160b16eafe70ce
parentf6cb1b5c6aa7b35d80454a7fd01301e097945a3a (diff)
Merged PR 19914: Fix Windows Azure Pipelines
Updating vcpkg seems to fix the recent issues with Windows builds in Azure Pipelines.
-rw-r--r--azure-pipelines.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index dfed6ab4..a1198818 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -19,7 +19,7 @@ variables:
CUDA_PATH_WINDOWS: "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA"
MKL_DIR: "$(Build.SourcesDirectory)/mkl"
MKL_URL: "https://romang.blob.core.windows.net/mariandev/ci/mkl-2020.1-windows-static.zip"
- VCPKG_COMMIT: 6185aa76504a5025f36754324abf307cc776f3da
+ VCPKG_COMMIT: c69096659f49e2b1aca532ea5c2f8c135182519b
VCPKG_DIR: "$(Build.SourcesDirectory)/vcpkg"
VCPKG_PACKAGES: "protobuf"
# The Visual Studio installation directory can be found using:
@@ -88,8 +88,8 @@ stages:
# Install packages
.\vcpkg.exe install --triplet x64-windows-static $(VCPKG_PACKAGES)
# Clean to make the cache smaller
- Remove-Item $(VCPKG_DIR)\downloads -Force -Recurse
- Remove-Item $(VCPKG_DIR)\buildtrees -Force -Recurse
+ Remove-Item $(VCPKG_DIR)\downloads -Force -Recurse -ErrorAction SilentlyContinue
+ Remove-Item $(VCPKG_DIR)\buildtrees -Force -Recurse -ErrorAction SilentlyContinue
displayName: Prepare vcpkg
- script: |