aboutsummaryrefslogtreecommitdiff
path: root/scripts/azure-pipelines/osx
diff options
context:
space:
mode:
authorBilly O'Neal <bion@microsoft.com>2020-08-22 22:23:59 -0700
committerGitHub <noreply@github.com>2020-08-22 22:23:59 -0700
commit4e65ce52abae7aef92f47105566786e072af05ac (patch)
treef7c243881015650edc3dd77c60df59affd25e6db /scripts/azure-pipelines/osx
parente96e74f08b4473aa8b9eac52750d7fa131c17a43 (diff)
downloadvcpkg-4e65ce52abae7aef92f47105566786e072af05ac.tar.gz
vcpkg-4e65ce52abae7aef92f47105566786e072af05ac.zip
Sort file lists and failure logs together. (#13067)
Diffstat (limited to 'scripts/azure-pipelines/osx')
-rw-r--r--scripts/azure-pipelines/osx/azure-pipelines.yml14
1 files changed, 5 insertions, 9 deletions
diff --git a/scripts/azure-pipelines/osx/azure-pipelines.yml b/scripts/azure-pipelines/osx/azure-pipelines.yml
index 6e48238a7..0856aada7 100644
--- a/scripts/azure-pipelines/osx/azure-pipelines.yml
+++ b/scripts/azure-pipelines/osx/azure-pipelines.yml
@@ -17,10 +17,8 @@ jobs:
value: /Users/vagrant/Data/downloads
steps:
- - bash: |
- df -h
+ - bash: df -h
displayName: 'Report on Disk Space'
- condition: always()
- bash: |
brew list autoconf || brew install autoconf
brew list automake || brew install automake
@@ -59,20 +57,18 @@ jobs:
displayName: 'Report on Disk Space After Build'
condition: always()
- task: PublishBuildArtifacts@1
- displayName: 'Publish Artifact: x64-osx port build failure logs'
+ displayName: 'Publish Artifact: failure logs for x64-osx'
inputs:
PathtoPublish: '$(System.ArtifactsDirectory)/failure-logs'
- ArtifactName: 'x64-osx port build failure logs'
+ ArtifactName: 'failure logs for x64-osx'
condition: failed()
- bash: |
python3 scripts/file_script.py /Users/vagrant/Data/installed/vcpkg/info/
displayName: 'Build a file list for all packages'
condition: always()
-
- task: PublishBuildArtifacts@1
- displayName: 'Upload file lists for all packages'
+ displayName: 'Publish Artifact: file lists for x64-osx'
condition: always()
-
inputs:
PathtoPublish: scripts/list_files
- ArtifactName: "x64-osx package file lists"
+ ArtifactName: 'file lists for x64-osx'