mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-03 05:09:01 +08:00
02daf011f0
* [Azure pipeline] Upload file list logs for unstable testing * Fix indentation
101 lines
3.9 KiB
YAML
101 lines
3.9 KiB
YAML
# Copyright (c) Microsoft Corporation.
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
jobs:
|
|
- job: ${{ parameters.jobName }}
|
|
pool:
|
|
name: $(unstable-pool)
|
|
workspace:
|
|
clean: resources
|
|
timeoutInMinutes: 1440 # 1 day
|
|
variables:
|
|
- name: WORKING_ROOT
|
|
value: D:\
|
|
- name: VCPKG_DOWNLOADS
|
|
value: D:\downloads
|
|
|
|
steps:
|
|
- task: DownloadBuildArtifacts@0
|
|
displayName: 'Download DropBuildNumber if not specified'
|
|
inputs:
|
|
buildType: specific
|
|
project: '0bdbc590-a062-4c3f-b0f6-9383f67865ee'
|
|
pipeline: 8136
|
|
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
|
|
- task: PowerShell@2
|
|
displayName: 'Report on Disk Space'
|
|
condition: always()
|
|
inputs:
|
|
filePath: 'scripts/azure-pipelines/windows/disk-space.ps1'
|
|
pwsh: true
|
|
- script: .\bootstrap-vcpkg.bat
|
|
displayName: 'Build vcpkg'
|
|
- task: PowerShell@2
|
|
displayName: '*** Test Modified Ports and Prepare Test Logs ***'
|
|
inputs:
|
|
failOnStderr: true
|
|
filePath: 'scripts/azure-pipelines/test-modified-ports.ps1'
|
|
arguments: '-Triplet ${{ parameters.triplet }} -BuildReason $(Build.Reason) -WorkingRoot ${{ variables.WORKING_ROOT }} -ArtifactStagingDirectory $(Build.ArtifactStagingDirectory)'
|
|
pwsh: true
|
|
- task: PowerShell@2
|
|
displayName: 'Report on Disk Space After Build'
|
|
condition: always()
|
|
inputs:
|
|
filePath: 'scripts/azure-pipelines/windows/disk-space.ps1'
|
|
pwsh: true
|
|
- task: PublishBuildArtifacts@1
|
|
displayName: 'Publish Artifact: failure logs for ${{ parameters.triplet }}'
|
|
inputs:
|
|
PathtoPublish: '$(Build.ArtifactStagingDirectory)\failure-logs'
|
|
ArtifactName: 'failure logs for ${{ parameters.triplet }}'
|
|
condition: always()
|
|
- task: PowerShell@2
|
|
displayName: 'Build a file list for all packages'
|
|
condition: always()
|
|
inputs:
|
|
targetType: inline
|
|
script: |
|
|
./vcpkg.exe fetch python3
|
|
& $(.\vcpkg fetch python3) .\scripts\file_script.py D:\installed\vcpkg\info\
|
|
pwsh: true
|
|
- task: PublishBuildArtifacts@1
|
|
displayName: 'Publish Artifact: file lists for ${{ parameters.triplet }}'
|
|
condition: always()
|
|
inputs:
|
|
PathtoPublish: scripts/list_files
|
|
ArtifactName: 'file lists for ${{ parameters.triplet }}'
|