diff options
| author | Billy O'Neal <bion@microsoft.com> | 2020-08-22 22:23:59 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-08-22 22:23:59 -0700 |
| commit | 4e65ce52abae7aef92f47105566786e072af05ac (patch) | |
| tree | f7c243881015650edc3dd77c60df59affd25e6db /scripts/azure-pipelines/windows | |
| parent | e96e74f08b4473aa8b9eac52750d7fa131c17a43 (diff) | |
| download | vcpkg-4e65ce52abae7aef92f47105566786e072af05ac.tar.gz vcpkg-4e65ce52abae7aef92f47105566786e072af05ac.zip | |
Sort file lists and failure logs together. (#13067)
Diffstat (limited to 'scripts/azure-pipelines/windows')
| -rw-r--r-- | scripts/azure-pipelines/windows/azure-pipelines.yml | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/scripts/azure-pipelines/windows/azure-pipelines.yml b/scripts/azure-pipelines/windows/azure-pipelines.yml index 340138e12..09a95a519 100644 --- a/scripts/azure-pipelines/windows/azure-pipelines.yml +++ b/scripts/azure-pipelines/windows/azure-pipelines.yml @@ -61,23 +61,22 @@ jobs: inputs:
filePath: 'scripts/azure-pipelines/windows/disk-space.ps1'
- task: PublishBuildArtifacts@1
- displayName: 'Publish Artifact: ${{ parameters.triplet }} port build failure logs'
+ displayName: 'Publish Artifact: failure logs for ${{ parameters.triplet }}'
inputs:
PathtoPublish: '$(System.ArtifactsDirectory)\failure-logs'
- ArtifactName: '${{ parameters.triplet }} port build failure logs'
+ ArtifactName: 'failure logs for ${{ parameters.triplet }}'
condition: failed()
- task: PowerShell@2
- displayName: "Generating all packages files"
+ 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\
- task: PublishBuildArtifacts@1
- displayName: 'Upload file lists for all packages'
+ displayName: 'Publish Artifact: file lists for ${{ parameters.triplet }}'
condition: always()
inputs:
PathtoPublish: scripts/list_files
- ArtifactName: "${{ parameters.triplet }} package file lists"
+ ArtifactName: 'file lists for ${{ parameters.triplet }}'
|
