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
|
2020-07-14 23:37:14 +08:00
|
|
|
brew list pkg-config || brew install pkg-config
|
2020-04-29 04:02:39 +08:00
|
|
|
brew list libtool || brew install libtool
|
2020-06-18 04:42:40 +08:00
|
|
|
brew list bison || brew install bison
|
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
|
|
|
- task: PowerShell@2
|
2020-06-26 07:36:28 +08:00
|
|
|
displayName: '*** Test Modified Ports and Prepare Test Logs ***'
|
2020-04-29 04:02:39 +08:00
|
|
|
inputs:
|
|
|
|
failOnStderr: true
|
2020-06-26 07:36:28 +08:00
|
|
|
filePath: 'scripts/azure-pipelines/test-modified-ports.ps1'
|
2020-07-03 11:20:07 +08:00
|
|
|
arguments: '-Triplet x64-osx -BuildReason $(Build.Reason) -ArchivesRoot /Users/vagrant/Data/archives -WorkingRoot /Users/vagrant/Data -ArtifactsDirectory $(System.ArtifactsDirectory)'
|
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:
|
2020-07-03 11:20:07 +08:00
|
|
|
PathtoPublish: '$(System.ArtifactsDirectory)/failure-logs'
|
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()
|
2020-07-07 04:38:22 +08:00
|
|
|
- bash: |
|
|
|
|
python3 scripts/file_script.py /Users/vagrant/Data/installed/vcpkg/info/
|
|
|
|
displayName: 'Build a file list for all packages'
|
2020-07-14 03:14:51 +08:00
|
|
|
condition: always()
|
2020-07-07 04:38:22 +08:00
|
|
|
|
|
|
|
- task: PublishBuildArtifacts@1
|
|
|
|
displayName: 'Upload file lists for all packages'
|
2020-07-14 03:14:51 +08:00
|
|
|
condition: always()
|
2020-07-07 04:38:22 +08:00
|
|
|
|
|
|
|
inputs:
|
|
|
|
PathtoPublish: scripts/list_files
|
|
|
|
ArtifactName: "x64-osx package file lists"
|