2020-04-29 04:02:39 +08:00
|
|
|
# Copyright (c) Microsoft Corporation.
|
|
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
#
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
- job: x64_osx
|
|
|
|
pool:
|
|
|
|
name: vcpkgAgentPool
|
|
|
|
demands: Agent.OS -equals Darwin
|
2020-05-20 03:23:39 +08:00
|
|
|
workspace:
|
|
|
|
clean: resources
|
2020-04-30 08:26:12 +08:00
|
|
|
timeoutInMinutes: 1440 # 1 day
|
2020-04-29 04:02:39 +08:00
|
|
|
steps:
|
2020-05-05 03:12:07 +08:00
|
|
|
- bash: |
|
|
|
|
df -h
|
2020-06-09 13:46:18 +08:00
|
|
|
displayName: 'Report on Disk Space'
|
2020-05-05 03:12:07 +08:00
|
|
|
condition: always()
|
2020-04-29 04:02:39 +08:00
|
|
|
- bash: |
|
|
|
|
brew list autoconf || brew install autoconf
|
|
|
|
brew list automake || brew install automake
|
|
|
|
brew list libtool || brew install libtool
|
2020-06-06 03:13:32 +08:00
|
|
|
brew list gfortran || brew cask install gfortran
|
2020-04-29 04:02:39 +08:00
|
|
|
displayName: 'Install brew dependencies'
|
2020-05-05 03:12:07 +08:00
|
|
|
- bash: |
|
2020-06-09 13:46:18 +08:00
|
|
|
sudo mkdir /Users/vagrant/Data/downloads || 0
|
|
|
|
sudo chmod 777 /Users/vagrant/Data/downloads || 0
|
|
|
|
exit 0
|
|
|
|
displayName: 'Create /Users/vagrant/Data/downloads'
|
2020-04-29 13:16:12 +08:00
|
|
|
- task: Bash@3
|
2020-04-29 04:02:39 +08:00
|
|
|
displayName: 'Build vcpkg'
|
2020-04-29 13:16:12 +08:00
|
|
|
inputs:
|
|
|
|
filePath: bootstrap-vcpkg.sh
|
2020-05-15 03:49:31 +08:00
|
|
|
arguments: '-buildTests'
|
2020-06-04 10:31:28 +08:00
|
|
|
env:
|
|
|
|
VCPKG_DOWNLOADS: '/Users/vagrant/Data/downloads'
|
2020-05-15 03:49:31 +08:00
|
|
|
- bash: toolsrc/build.rel/vcpkg-test
|
|
|
|
displayName: 'Run vcpkg tests'
|
2020-04-29 04:02:39 +08:00
|
|
|
- powershell: |
|
2020-06-09 13:46:18 +08:00
|
|
|
$env:VCPKG_DOWNLOADS = '/Users/vagrant/Data/downloads'
|
|
|
|
$commonArgs = @(
|
|
|
|
'--binarycaching',
|
|
|
|
'--x-binarysource=clear;files,/Users/vagrant/Data/archives,upload',
|
|
|
|
'--x-buildtrees-root=/Users/vagrant/Data/buildtrees',
|
|
|
|
'--x-install-root=/Users/vagrant/Data/installed',
|
|
|
|
'--x-packages-root=/Users/vagrant/Data/packages'
|
|
|
|
)
|
|
|
|
|
|
|
|
./vcpkg x-ci-clean @commonArgs
|
2020-06-04 10:31:28 +08:00
|
|
|
$skipList = ./scripts/azure-pipelines/generate-skip-list.ps1 -Triplet "x64-osx" -BaselineFile "$(System.DefaultWorkingDirectory)/scripts/ci.baseline.txt"
|
2020-04-29 04:02:39 +08:00
|
|
|
mkdir $(System.ArtifactsDirectory)/xml-results
|
2020-06-09 13:46:18 +08:00
|
|
|
./vcpkg ci x64-osx --x-xunit="$(System.ArtifactsDirectory)/xml-results/x64-osx.xml" --exclude=$skipList @commonArgs
|
2020-04-29 04:02:39 +08:00
|
|
|
displayName: '** Test Modified Ports **'
|
|
|
|
- task: PowerShell@2
|
|
|
|
displayName: 'Analyze results and prepare test logs'
|
|
|
|
inputs:
|
|
|
|
failOnStderr: true
|
|
|
|
filePath: 'scripts/azure-pipelines/analyze-test-results.ps1'
|
2020-06-04 10:31:28 +08:00
|
|
|
arguments: '-baselineFile $(System.DefaultWorkingDirectory)/scripts/ci.baseline.txt -logDir "$(System.ArtifactsDirectory)/xml-results" -outputDir "$(Build.ArtifactStagingDirectory)" -failurelogDir /Users/vagrant/Data/archives/fail -triplets "x64-osx" -errorOnRegression'
|
2020-05-05 03:12:07 +08:00
|
|
|
- bash: |
|
|
|
|
df -h
|
|
|
|
displayName: 'Report on Disk Space After Build'
|
|
|
|
condition: always()
|
2020-04-29 04:02:39 +08:00
|
|
|
- task: PublishBuildArtifacts@1
|
|
|
|
displayName: 'Publish Artifact: x64-osx port build failure logs'
|
|
|
|
inputs:
|
|
|
|
PathtoPublish: '$(Build.ArtifactStagingDirectory)/failureLogs'
|
2020-04-29 13:16:12 +08:00
|
|
|
ArtifactName: 'x64-osx port build failure logs'
|
2020-04-29 04:02:39 +08:00
|
|
|
condition: failed()
|