mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-19 00:47:50 +08:00
90a5b03c9f
Changes this month: * Adopt [delegated-sas](https://learn.microsoft.com/en-us/rest/api/storageservices/create-user-delegation-sas) tokens to allow us to shut off the storage account keys, thanks to @ryanerdmann for the help * Visual Studio 2022 17.8.9, hopefully resolves CVE-2024-26190, CVE-2024-21392 . (These don't matter to us but they cause the Microsoft-internal tool 'Service 360' to yell at us) * https://github.com/microsoft/vcpkg/pull/37902 * https://github.com/microsoft/vcpkg/pull/37903 --------- Co-authored-by: Kai Pastor <dg0yt@darc.de>
77 lines
3.2 KiB
YAML
77 lines
3.2 KiB
YAML
# Copyright (c) Microsoft Corporation.
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
jobs:
|
|
- job: ${{ parameters.jobName }}
|
|
pool:
|
|
name: $(unstable-pool)
|
|
workspace:
|
|
clean: resources
|
|
timeoutInMinutes: 5760 # 4 days
|
|
variables:
|
|
- name: WORKING_ROOT
|
|
value: D:\
|
|
- name: VCPKG_DOWNLOADS
|
|
value: D:\downloads
|
|
- group: vcpkg-asset-caching-credentials
|
|
- name: X_VCPKG_ASSET_SOURCES
|
|
value: "x-azurl,$(root-url-wus3),$(sas-wus3),readwrite"
|
|
|
|
steps:
|
|
- task: DownloadBuildArtifacts@0
|
|
displayName: 'Download DropBuildNumber if not specified'
|
|
inputs:
|
|
buildType: specific
|
|
project: '0bdbc590-a062-4c3f-b0f6-9383f67865ee'
|
|
pipeline: 16549
|
|
buildVersionToDownload: latestFromBranch
|
|
branchName: 'refs/heads/$(MSVCBranchName)'
|
|
artifactName: BuildNumber
|
|
downloadPath: 'D:\msvc-drops'
|
|
condition: eq(variables['DropBuildNumber'], '')
|
|
- task: PowerShell@2
|
|
displayName: 'Set DropBuildNumber if not specified'
|
|
inputs:
|
|
targetType: inline
|
|
script: |
|
|
$DropBuildNumber = Get-Content -Path D:\msvc-drops\BuildNumber\Build.BuildNumber.txt
|
|
Write-Host "##vso[task.setvariable variable=DropBuildNumber]$DropBuildNumber"
|
|
Write-Host "Build Number set to: $DropBuildNumber"
|
|
pwsh: true
|
|
condition: eq(variables['DropBuildNumber'], '')
|
|
- task: ms-vscs-artifact.build-tasks.artifactDropDownloadTask-1.artifactDropDownloadTask@0
|
|
displayName: 'Download msvc x86 ret'
|
|
inputs:
|
|
dropServiceURI: 'https://devdiv.artifacts.visualstudio.com/DefaultCollection'
|
|
buildNumber: 'msvc/builds/$(DropBuildNumber)/x86ret'
|
|
destinationPath: 'D:\msvc-drops\$(DropBuildNumber)\binaries.x86ret'
|
|
- task: ms-vscs-artifact.build-tasks.artifactDropDownloadTask-1.artifactDropDownloadTask@0
|
|
displayName: 'Download msvc amd64 ret'
|
|
inputs:
|
|
dropServiceURI: 'https://devdiv.artifacts.visualstudio.com/DefaultCollection'
|
|
buildNumber: 'msvc/builds/$(DropBuildNumber)/amd64ret'
|
|
destinationPath: 'D:\msvc-drops\$(DropBuildNumber)\binaries.amd64ret'
|
|
- task: PowerShell@2
|
|
displayName: 'Rearrange MSVC Drop Layout'
|
|
inputs:
|
|
targetType: filePath
|
|
filePath: 'scripts/azure-pipelines/windows-unstable/rearrange-msvc-drop-layout.ps1'
|
|
arguments: '-DropRoot "D:\msvc-drops\$(DropBuildNumber)" -BuildType ret'
|
|
pwsh: true
|
|
- script: .\bootstrap-vcpkg.bat
|
|
displayName: 'Bootstrap vcpkg'
|
|
- task: PowerShell@2
|
|
displayName: '*** Test Modified Ports'
|
|
inputs:
|
|
failOnStderr: true
|
|
filePath: 'scripts/azure-pipelines/test-modified-ports.ps1'
|
|
arguments: "-Triplet ${{ replace(parameters.jobName, '_', '-') }} -BuildReason $(Build.Reason) -WorkingRoot ${{ variables.WORKING_ROOT }} -ArtifactStagingDirectory $(Build.ArtifactStagingDirectory) -PassingIsPassing"
|
|
pwsh: true
|
|
- task: PublishBuildArtifacts@1
|
|
displayName: "Publish Artifact: failure logs for ${{ replace(parameters.jobName, '_', '-') }}"
|
|
inputs:
|
|
PathtoPublish: '$(Build.ArtifactStagingDirectory)\failure-logs'
|
|
ArtifactName: "failure logs for ${{ replace(parameters.jobName, '_', '-') }}"
|
|
condition: ne(variables['FAILURE_LOGS_EMPTY'], 'True')
|