2020-04-28 13:02:39 -07:00
|
|
|
# Copyright (c) Microsoft Corporation.
|
|
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
#
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
- job: x64_osx
|
|
|
|
pool:
|
|
|
|
name: vcpkgAgentPool
|
|
|
|
demands: Agent.OS -equals Darwin
|
2020-05-19 12:23:39 -07:00
|
|
|
workspace:
|
|
|
|
clean: resources
|
2020-04-29 17:26:12 -07:00
|
|
|
timeoutInMinutes: 1440 # 1 day
|
2020-04-28 13:02:39 -07:00
|
|
|
steps:
|
2020-05-04 12:12:07 -07:00
|
|
|
- bash: |
|
|
|
|
df -h
|
2020-06-08 22:46:18 -07:00
|
|
|
displayName: 'Report on Disk Space'
|
2020-05-04 12:12:07 -07:00
|
|
|
condition: always()
|
2020-04-28 13:02:39 -07: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-28 13:02:39 -07:00
|
|
|
brew list libtool || brew install libtool
|
2020-06-18 04:42:40 +08:00
|
|
|
brew list bison || brew install bison
|
2020-06-05 21:13:32 +02:00
|
|
|
brew list gfortran || brew cask install gfortran
|
2020-08-01 16:56:56 -04:00
|
|
|
brew list yasm || brew install yasm
|
2020-04-28 13:02:39 -07:00
|
|
|
displayName: 'Install brew dependencies'
|
2020-05-04 12:12:07 -07:00
|
|
|
- bash: |
|
2020-06-08 22:46:18 -07: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-28 22:16:12 -07:00
|
|
|
- task: Bash@3
|
2020-04-28 13:02:39 -07:00
|
|
|
displayName: 'Build vcpkg'
|
2020-04-28 22:16:12 -07:00
|
|
|
inputs:
|
|
|
|
filePath: bootstrap-vcpkg.sh
|
2020-05-14 12:49:31 -07:00
|
|
|
arguments: '-buildTests'
|
2020-06-03 19:31:28 -07:00
|
|
|
env:
|
|
|
|
VCPKG_DOWNLOADS: '/Users/vagrant/Data/downloads'
|
2020-05-14 12:49:31 -07:00
|
|
|
- bash: toolsrc/build.rel/vcpkg-test
|
|
|
|
displayName: 'Run vcpkg tests'
|
2020-04-28 13:02:39 -07:00
|
|
|
- task: PowerShell@2
|
2020-06-25 16:36:28 -07:00
|
|
|
displayName: '*** Test Modified Ports and Prepare Test Logs ***'
|
2020-04-28 13:02:39 -07:00
|
|
|
inputs:
|
|
|
|
failOnStderr: true
|
2020-06-25 16:36:28 -07:00
|
|
|
filePath: 'scripts/azure-pipelines/test-modified-ports.ps1'
|
2020-07-02 20:20:07 -07:00
|
|
|
arguments: '-Triplet x64-osx -BuildReason $(Build.Reason) -ArchivesRoot /Users/vagrant/Data/archives -WorkingRoot /Users/vagrant/Data -ArtifactsDirectory $(System.ArtifactsDirectory)'
|
2020-05-04 12:12:07 -07:00
|
|
|
- bash: |
|
|
|
|
df -h
|
|
|
|
displayName: 'Report on Disk Space After Build'
|
|
|
|
condition: always()
|
2020-04-28 13:02:39 -07:00
|
|
|
- task: PublishBuildArtifacts@1
|
|
|
|
displayName: 'Publish Artifact: x64-osx port build failure logs'
|
|
|
|
inputs:
|
2020-07-02 20:20:07 -07:00
|
|
|
PathtoPublish: '$(System.ArtifactsDirectory)/failure-logs'
|
2020-04-28 22:16:12 -07:00
|
|
|
ArtifactName: 'x64-osx port build failure logs'
|
2020-04-28 13:02:39 -07:00
|
|
|
condition: failed()
|
2020-07-06 13:38:22 -07:00
|
|
|
- bash: |
|
|
|
|
python3 scripts/file_script.py /Users/vagrant/Data/installed/vcpkg/info/
|
|
|
|
displayName: 'Build a file list for all packages'
|
2020-07-13 12:14:51 -07:00
|
|
|
condition: always()
|
2020-07-06 13:38:22 -07:00
|
|
|
|
|
|
|
- task: PublishBuildArtifacts@1
|
|
|
|
displayName: 'Upload file lists for all packages'
|
2020-07-13 12:14:51 -07:00
|
|
|
condition: always()
|
2020-07-06 13:38:22 -07:00
|
|
|
|
|
|
|
inputs:
|
|
|
|
PathtoPublish: scripts/list_files
|
|
|
|
ArtifactName: "x64-osx package file lists"
|