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-08-11 01:22:51 +08:00
|
|
|
variables:
|
|
|
|
- name: WORKING_ROOT
|
|
|
|
value: /Users/vagrant/Data
|
|
|
|
- name: VCPKG_DOWNLOADS
|
|
|
|
value: /Users/vagrant/Data/downloads
|
|
|
|
|
2020-04-29 04:02:39 +08:00
|
|
|
steps:
|
2020-08-23 13:23:59 +08:00
|
|
|
- bash: df -h
|
2020-06-09 13:46:18 +08:00
|
|
|
displayName: 'Report on Disk Space'
|
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-08-11 01:22:51 +08:00
|
|
|
brew list mono || brew install mono
|
2020-08-02 04:56:56 +08:00
|
|
|
brew list yasm || brew install yasm
|
2020-04-29 04:02:39 +08:00
|
|
|
displayName: 'Install brew dependencies'
|
2020-05-05 03:12:07 +08:00
|
|
|
- bash: |
|
2020-08-11 01:22:51 +08:00
|
|
|
sudo mkdir ${{ variables.VCPKG_DOWNLOADS }} || 0
|
|
|
|
sudo chmod 777 ${{ variables.VCPKG_DOWNLOADS }} || 0
|
2020-06-09 13:46:18 +08:00
|
|
|
exit 0
|
2020-08-11 01:22:51 +08:00
|
|
|
displayName: 'Create ${{ variables.VCPKG_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'
|
|
|
|
- bash: toolsrc/build.rel/vcpkg-test
|
|
|
|
displayName: 'Run vcpkg tests'
|
2020-08-11 01:22:51 +08:00
|
|
|
- task: PowerShell@2
|
|
|
|
displayName: 'Run vcpkg end-to-end tests'
|
|
|
|
inputs:
|
|
|
|
filePath: 'scripts/azure-pipelines/end-to-end-tests.ps1'
|
|
|
|
arguments: '-Triplet x64-osx -WorkingRoot ${{ variables.WORKING_ROOT }}'
|
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-09-22 08:27:35 +08:00
|
|
|
arguments: '-Triplet x64-osx -BuildReason $(Build.Reason) -ArchivesRoot ${{ variables.WORKING_ROOT }}/archives -WorkingRoot ${{ variables.WORKING_ROOT }} -ArtifactStagingDirectory $(Build.ArtifactStagingDirectory)'
|
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
|
2020-08-23 13:23:59 +08:00
|
|
|
displayName: 'Publish Artifact: failure logs for x64-osx'
|
2020-04-29 04:02:39 +08:00
|
|
|
inputs:
|
2020-09-22 08:27:35 +08:00
|
|
|
PathtoPublish: '$(Build.ArtifactStagingDirectory)/failure-logs'
|
2020-08-23 13:23:59 +08:00
|
|
|
ArtifactName: 'failure logs for x64-osx'
|
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
|
2020-08-23 13:23:59 +08:00
|
|
|
displayName: 'Publish Artifact: file lists for x64-osx'
|
2020-07-14 03:14:51 +08:00
|
|
|
condition: always()
|
2020-07-07 04:38:22 +08:00
|
|
|
inputs:
|
|
|
|
PathtoPublish: scripts/list_files
|
2020-08-23 13:23:59 +08:00
|
|
|
ArtifactName: 'file lists for x64-osx'
|