Skip to content

Commit 14e7bb4

Browse files
authored
Update vcpkg-tool to 2022-05-05 (#24526)
* Update vcpkg-tool to 2022-05-03 * Remove unused --x-xunit call. * Actually 2022-05-05
1 parent acca474 commit 14e7bb4

3 files changed

Lines changed: 7 additions & 11 deletions

File tree

scripts/azure-pipelines/test-modified-ports.ps1

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -115,10 +115,6 @@ else {
115115
$executableExtension = '.exe'
116116
}
117117

118-
$xmlResults = Join-Path $ArtifactStagingDirectory 'xml-results'
119-
mkdir $xmlResults
120-
$xmlFile = Join-Path $xmlResults "$Triplet.xml"
121-
122118
$failureLogs = Join-Path $ArtifactStagingDirectory 'failure-logs'
123119

124120
if ($IsWindows)
@@ -166,7 +162,7 @@ if (($BuildReason -eq 'PullRequest') -and -not $NoParentHashes)
166162
# but changes must trigger at least some testing.
167163
Copy-Item "scripts/buildsystems/vcpkg.cmake" -Destination "scripts/test_ports/cmake"
168164
Copy-Item "scripts/buildsystems/vcpkg.cmake" -Destination "scripts/test_ports/cmake-user"
169-
& "./vcpkg$executableExtension" ci "--triplet=$Triplet" --x-xunit=$xmlFile --failure-logs=$failureLogs "--ci-baseline=$PSScriptRoot/../ci.baseline.txt" @commonArgs @cachingArgs @parentHashes @skipFailuresArg
165+
& "./vcpkg$executableExtension" ci "--triplet=$Triplet" --failure-logs=$failureLogs "--ci-baseline=$PSScriptRoot/../ci.baseline.txt" @commonArgs @cachingArgs @parentHashes @skipFailuresArg
170166

171167
$failureLogsEmpty = (-Not (Test-Path $failureLogs) -Or ((Get-ChildItem $failureLogs).count -eq 0))
172168
Write-Host "##vso[task.setvariable variable=FAILURE_LOGS_EMPTY]$failureLogsEmpty"

scripts/bootstrap.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ while (!($vcpkgRootDir -eq "") -and !(Test-Path "$vcpkgRootDir\.vcpkg-root"))
4545

4646
Write-Verbose "Examining $vcpkgRootDir for .vcpkg-root - Found"
4747

48-
$versionDate = '2022-03-30'
48+
$versionDate = '2022-05-05'
4949
if ($env:PROCESSOR_ARCHITECTURE -eq 'ARM64' -or $env:PROCESSOR_IDENTIFIER -match "ARMv[8,9] \(64-bit\)") {
5050
& "$scriptsDir/tls12-download.exe" github.com "/microsoft/vcpkg-tool/releases/download/$versionDate/vcpkg-arm64.exe" "$vcpkgRootDir\vcpkg.exe"
5151
} else {

scripts/bootstrap.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -126,23 +126,23 @@ fi
126126

127127
# Choose the vcpkg binary to download
128128
vcpkgDownloadTool="ON"
129-
vcpkgToolReleaseTag="2022-03-30"
129+
vcpkgToolReleaseTag="2022-05-05"
130130
if [ "$UNAME" = "Darwin" ]; then
131131
echo "Downloading vcpkg-macos..."
132-
vcpkgToolReleaseSha="8bf65bc52b48c0c048c465036dfab60c0d6b84d2c61bf36c948b58d2da0a6f9f21b00dbc888fe5b163c275e901a0014482e50895ee607408cf533057b66a4e73"
132+
vcpkgToolReleaseSha="d1bc1de6185892b90641256ac509aac88b6c23d5f4875038d071b4518f33d852d7519346a78d79913748991203a9474632d59645c788b1fe56f74938327bb90f"
133133
vcpkgToolName="vcpkg-macos"
134134
elif [ "$vcpkgUseMuslC" = "ON" ]; then
135135
echo "Downloading vcpkg-muslc..."
136-
vcpkgToolReleaseSha="d5a0a67ef966b1db5ded37986ccabd8a6dc2531209e07945c32679faab45c0f001b95eef342e41f8937234e8efa6b038847b78f77c19d949a7d2aa7857b6a019"
136+
vcpkgToolReleaseSha="d698b5c37438eb03846d3908a67a7b955242d4e73c069ac4668de3be5fee8c21bf7ff0d291f5b85c6415fae70ca8d3ff926a757eb5aeda8b5d112d24c6874133"
137137
vcpkgToolName="vcpkg-muslc"
138138
elif [ "$ARCH" = "x86_64" ]; then
139139
echo "Downloading vcpkg-glibc..."
140-
vcpkgToolReleaseSha="14dae353ce576e688cd93f0607f4eb7d724fb34f4c78c62d90db0c0fc4806e21c0da2b4fbe0b2a776ac3e8c669685e8d26990b5828be252645ac9289c7d015f9"
140+
vcpkgToolReleaseSha="bd1c24f113acee53c458b204b2443bb3a2e129f0df7f2772c83876e97e7788e9151d0ab92248ed5ee7cecf1152569ccb1050f174e70a7a21d7da8a580c73c132"
141141
vcpkgToolName="vcpkg-glibc"
142142
else
143143
echo "Unable to determine a binary release of vcpkg; attempting to build from source."
144144
vcpkgDownloadTool="OFF"
145-
vcpkgToolReleaseSha="d1fba2655e04dbf599129e688b40be6b61cc23c41943b5d0d4ac23a7cb5df195fadfe252a8c9ea619d4730352eb40e424ef50919ecfad6e52a76b2b4627dbb16"
145+
vcpkgToolReleaseSha="9968b2420c19ac88fd912aa0d3d230a4712d51c411a7f5023c4a5d96c5fcc963ce8fbb286594220b5dfc63e23bdbcf3439326b90262dd89ea5b63afa143ca699"
146146
fi
147147

148148
# Do the download or build.

0 commit comments

Comments
 (0)