mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-29 03:34:26 +08:00
481738beae
* [vcpkg] Add `vcpkg export` to E2E tests. Enable E2E tests on MacOS. * [vcpkg] Fix export --raw --output-dir=/path/ by changing directory to new export root Co-authored-by: Robert Schumacher <roschuma@microsoft.com> Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
79 lines
2.7 KiB
YAML
79 lines
2.7 KiB
YAML
# Copyright (c) Microsoft Corporation.
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
jobs:
|
|
- job: x64_osx
|
|
pool:
|
|
name: vcpkgAgentPool
|
|
demands: Agent.OS -equals Darwin
|
|
workspace:
|
|
clean: resources
|
|
timeoutInMinutes: 1440 # 1 day
|
|
variables:
|
|
- name: WORKING_ROOT
|
|
value: /Users/vagrant/Data
|
|
- name: VCPKG_DOWNLOADS
|
|
value: /Users/vagrant/Data/downloads
|
|
|
|
steps:
|
|
- bash: |
|
|
df -h
|
|
displayName: 'Report on Disk Space'
|
|
condition: always()
|
|
- bash: |
|
|
brew list autoconf || brew install autoconf
|
|
brew list automake || brew install automake
|
|
brew list pkg-config || brew install pkg-config
|
|
brew list libtool || brew install libtool
|
|
brew list bison || brew install bison
|
|
brew list gfortran || brew cask install gfortran
|
|
brew list mono || brew install mono
|
|
brew list yasm || brew install yasm
|
|
displayName: 'Install brew dependencies'
|
|
- bash: |
|
|
sudo mkdir ${{ variables.VCPKG_DOWNLOADS }} || 0
|
|
sudo chmod 777 ${{ variables.VCPKG_DOWNLOADS }} || 0
|
|
exit 0
|
|
displayName: 'Create ${{ variables.VCPKG_DOWNLOADS }}'
|
|
- task: Bash@3
|
|
displayName: 'Build vcpkg'
|
|
inputs:
|
|
filePath: bootstrap-vcpkg.sh
|
|
arguments: '-buildTests'
|
|
- bash: toolsrc/build.rel/vcpkg-test
|
|
displayName: 'Run vcpkg tests'
|
|
- 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 }}'
|
|
- task: PowerShell@2
|
|
displayName: '*** Test Modified Ports and Prepare Test Logs ***'
|
|
inputs:
|
|
failOnStderr: true
|
|
filePath: 'scripts/azure-pipelines/test-modified-ports.ps1'
|
|
arguments: '-Triplet x64-osx -BuildReason $(Build.Reason) -ArchivesRoot ${{ variables.WORKING_ROOT }}/archives -WorkingRoot ${{ variables.WORKING_ROOT }} -ArtifactsDirectory $(System.ArtifactsDirectory)'
|
|
- bash: |
|
|
df -h
|
|
displayName: 'Report on Disk Space After Build'
|
|
condition: always()
|
|
- task: PublishBuildArtifacts@1
|
|
displayName: 'Publish Artifact: x64-osx port build failure logs'
|
|
inputs:
|
|
PathtoPublish: '$(System.ArtifactsDirectory)/failure-logs'
|
|
ArtifactName: 'x64-osx port build failure logs'
|
|
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'
|
|
condition: always()
|
|
|
|
inputs:
|
|
PathtoPublish: scripts/list_files
|
|
ArtifactName: "x64-osx package file lists"
|