2020-04-29 04:02:39 +08:00
|
|
|
# Copyright (c) Microsoft Corporation.
|
|
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
#
|
|
|
|
|
2021-09-30 04:15:25 +08:00
|
|
|
parameters:
|
2022-05-24 04:33:58 +08:00
|
|
|
- name: vcpkgToolSha
|
|
|
|
displayName: 'Custom SHA of vcpkg-tool to use rather than bootstrap'
|
|
|
|
type: string
|
|
|
|
default: 'use default'
|
|
|
|
- name: poolName
|
|
|
|
type: string
|
2023-02-25 03:32:02 +08:00
|
|
|
- name: tripletPattern
|
|
|
|
displayName: 'Enable the triplets which contain this substring'
|
|
|
|
type: string
|
|
|
|
default: ''
|
2021-09-30 04:15:25 +08:00
|
|
|
|
2020-04-29 04:02:39 +08:00
|
|
|
jobs:
|
2021-12-14 04:54:16 +08:00
|
|
|
- job: x64_osx
|
2023-04-08 10:21:44 +08:00
|
|
|
condition: and(succeeded(), contains('^x64-osx$', '${{ parameters.tripletPattern }}'))
|
2020-04-29 04:02:39 +08:00
|
|
|
pool:
|
2020-09-25 06:15:06 +08:00
|
|
|
name: ${{ parameters.poolName }}
|
2020-05-20 03:23:39 +08:00
|
|
|
workspace:
|
|
|
|
clean: resources
|
2021-12-14 04:54:16 +08:00
|
|
|
timeoutInMinutes: 2880 # 2 days
|
2020-08-11 01:22:51 +08:00
|
|
|
variables:
|
|
|
|
- name: WORKING_ROOT
|
|
|
|
value: /Users/vagrant/Data
|
|
|
|
- name: VCPKG_DOWNLOADS
|
|
|
|
value: /Users/vagrant/Data/downloads
|
2021-10-05 02:52:47 +08:00
|
|
|
- group: vcpkg-binary-caching-credentials
|
|
|
|
- name: X_VCPKG_BINARY_SOURCE_STUB
|
2022-05-21 04:42:58 +08:00
|
|
|
value: "x-azblob,$(root-bin-url),$(sas-bin)" # not in eastasia due to physical location
|
2021-06-30 04:47:39 +08:00
|
|
|
- group: vcpkg-asset-caching-credentials
|
2021-06-05 07:48:26 +08:00
|
|
|
- name: X_VCPKG_ASSET_SOURCES
|
2022-05-21 04:42:58 +08:00
|
|
|
value: "x-azurl,$(root-url-ea),$(sas-ea),readwrite"
|
2020-08-11 01:22:51 +08:00
|
|
|
|
2020-04-29 04:02:39 +08:00
|
|
|
steps:
|
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 }}'
|
2022-05-24 04:33:58 +08:00
|
|
|
- bash: ./bootstrap-vcpkg.sh
|
2022-03-08 03:39:32 +08:00
|
|
|
displayName: 'Bootstrap vcpkg'
|
2022-05-24 04:33:58 +08:00
|
|
|
condition: eq('use default', '${{ parameters.vcpkgToolSha }}')
|
|
|
|
- bash: |
|
|
|
|
brew install cmake
|
|
|
|
./scripts/azure-pipelines/bootstrap-from-source.sh ${{ parameters.vcpkgToolSha }}
|
|
|
|
displayName: "Build vcpkg with CMake"
|
|
|
|
condition: ne('use default', '${{ parameters.vcpkgToolSha }}')
|
2020-04-29 04:02:39 +08:00
|
|
|
- task: PowerShell@2
|
2022-05-24 04:33:58 +08:00
|
|
|
displayName: '*** Test Modified Ports'
|
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'
|
2021-09-30 04:15:25 +08:00
|
|
|
arguments: >
|
|
|
|
-Triplet "x64-osx"
|
|
|
|
-BuildReason "$(Build.Reason)"
|
2021-10-05 02:52:47 +08:00
|
|
|
-BinarySourceStub "${{ variables.X_VCPKG_BINARY_SOURCE_STUB }}"
|
2021-09-30 04:15:25 +08:00
|
|
|
-WorkingRoot "${{ variables.WORKING_ROOT }}"
|
|
|
|
-ArtifactStagingDirectory "$(Build.ArtifactStagingDirectory)"
|
2021-01-21 04:07:41 +08:00
|
|
|
pwsh: true
|
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'
|
2021-09-30 04:15:25 +08:00
|
|
|
ArtifactName: 'failure logs for x64-osx${{ variables.Postfix }}'
|
2021-09-29 05:00:33 +08:00
|
|
|
condition: ne(variables['FAILURE_LOGS_EMPTY'], 'True')
|
2022-05-24 04:33:58 +08:00
|
|
|
- bash: python3 scripts/file_script.py /Users/vagrant/Data/installed/vcpkg/info/
|
2020-07-07 04:38:22 +08:00
|
|
|
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
|
2021-09-30 04:15:25 +08:00
|
|
|
displayName: 'Publish Artifact: file lists for x64-osx${{ variables.Postfix }}'
|
2020-07-14 03:14:51 +08:00
|
|
|
condition: always()
|
2020-07-07 04:38:22 +08:00
|
|
|
inputs:
|
|
|
|
PathtoPublish: scripts/list_files
|
2021-09-30 04:15:25 +08:00
|
|
|
ArtifactName: 'file lists for x64-osx${{ variables.Postfix }}'
|
2022-06-16 02:20:52 +08:00
|
|
|
- task: PublishTestResults@2
|
|
|
|
displayName: 'Publish Test Results'
|
|
|
|
condition: ne(variables['XML_RESULTS_FILE'], '')
|
|
|
|
inputs:
|
|
|
|
testRunTitle: x64-osx
|
|
|
|
testResultsFormat: xUnit
|
|
|
|
testResultsFiles: $(XML_RESULTS_FILE)
|
|
|
|
platform: x64-osx
|
|
|
|
configuration: static
|