mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-05 09:41:28 +08:00
4cbbcbddfd
* [vcpkg ci:osx] Remove brew install * add instructions for creating a new vagrant box * fix the vagrant scripts for the new box * finish fixing the setup * [mecab jxrlib] fix ports for CI mecab needed to use an actual ref that wasn't master, and jxrlib needed a patch for xcode 12 CLTs. Additionally, this fixes the mecab version to be a date, the date of the last commit, since `1.0` is not the correct version (mecab doesn't have released versions) * [many ports] fix compile with Xcode 12 CLTs This mostly means fixing errors on implicit-function-declaration, and removing some Werrors * alac-decoder * apr * argtable2 * arrow * hyperscan * mcpp * minizip * mosquitto * stormlib * [many ports] even more Xcode 12 CLT fixes * [jxrlib darknet] fix the last ports! (hopefully) * CRs, plus minor wip changes to osx scripts
64 lines
2.2 KiB
YAML
64 lines
2.2 KiB
YAML
# Copyright (c) Microsoft Corporation.
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
jobs:
|
|
- job: x64_osx
|
|
pool:
|
|
name: ${{ parameters.poolName }}
|
|
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'
|
|
- 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 }} -ArtifactStagingDirectory $(Build.ArtifactStagingDirectory)'
|
|
- bash: |
|
|
df -h
|
|
displayName: 'Report on Disk Space After Build'
|
|
condition: always()
|
|
- task: PublishBuildArtifacts@1
|
|
displayName: 'Publish Artifact: failure logs for x64-osx'
|
|
inputs:
|
|
PathtoPublish: '$(Build.ArtifactStagingDirectory)/failure-logs'
|
|
ArtifactName: 'failure logs for x64-osx'
|
|
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: 'Publish Artifact: file lists for x64-osx'
|
|
condition: always()
|
|
inputs:
|
|
PathtoPublish: scripts/list_files
|
|
ArtifactName: 'file lists for x64-osx'
|