2020-04-29 13:16:12 +08:00
|
|
|
# Copyright (c) Microsoft Corporation.
|
|
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
#
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
- job: x64_linux
|
|
|
|
pool:
|
|
|
|
name: ${{ parameters.poolName }}
|
2020-05-20 03:23:39 +08:00
|
|
|
workspace:
|
|
|
|
clean: resources
|
2020-04-29 13:16:12 +08:00
|
|
|
timeoutInMinutes: 1440 # 1 day
|
2020-08-11 01:22:51 +08:00
|
|
|
variables:
|
|
|
|
- name: WORKING_ROOT
|
|
|
|
value: /mnt/vcpkg-ci
|
|
|
|
- name: VCPKG_DOWNLOADS
|
|
|
|
value: /mnt/vcpkg-ci/downloads
|
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
|
2021-06-30 04:47:39 +08:00
|
|
|
value: "x-azurl,$(root-url),$(sas),readwrite"
|
2021-09-03 15:02:29 +08:00
|
|
|
- group: vcpkg-binary-caching-credentials
|
|
|
|
- name: X_VCPKG_BINARY_SOURCE_STUB
|
|
|
|
value: "x-azblob,$(root-bin-url),$(sas-bin)"
|
2020-08-11 01:22:51 +08:00
|
|
|
|
2020-04-29 13:16:12 +08:00
|
|
|
steps:
|
2020-06-04 10:31:28 +08:00
|
|
|
- bash: df -h
|
|
|
|
displayName: 'Report on Disk Space'
|
2020-05-26 02:52:48 +08:00
|
|
|
- bash: |
|
|
|
|
sudo mkdir /home/agent -m=777
|
|
|
|
sudo chown `id -u` /home/agent
|
|
|
|
exit 0
|
|
|
|
displayName: 'Create /home/agent'
|
2020-06-04 10:31:28 +08:00
|
|
|
# Note: /mnt is the Azure machines' temporary disk.
|
2020-05-05 03:12:07 +08:00
|
|
|
- bash: |
|
2021-08-03 05:15:48 +08:00
|
|
|
sudo rm -rf ${{ variables.VCPKG_DOWNLOADS }}
|
2020-08-11 01:22:51 +08:00
|
|
|
sudo mkdir ${{ variables.WORKING_ROOT }} -m=777
|
|
|
|
sudo mkdir ${{ variables.VCPKG_DOWNLOADS }} -m=777
|
2020-06-04 10:31:28 +08:00
|
|
|
exit 0
|
2021-08-03 05:15:48 +08:00
|
|
|
displayName: 'Create ${{ variables.WORKING_ROOT }} and ${{ variables.VCPKG_DOWNLOADS }}'
|
2020-04-29 13:16:12 +08:00
|
|
|
- task: Bash@3
|
2021-02-05 02:15:44 +08:00
|
|
|
displayName: 'Bootstrap vcpkg'
|
2020-04-29 13:16:12 +08:00
|
|
|
inputs:
|
|
|
|
filePath: bootstrap-vcpkg.sh
|
|
|
|
- task: PowerShell@2
|
2020-06-26 07:36:28 +08:00
|
|
|
displayName: '*** Test Modified Ports and Prepare Test Logs ***'
|
2020-04-29 13:16:12 +08:00
|
|
|
inputs:
|
|
|
|
failOnStderr: true
|
2020-06-26 07:36:28 +08:00
|
|
|
filePath: 'scripts/azure-pipelines/test-modified-ports.ps1'
|
2021-09-16 02:39:39 +08:00
|
|
|
arguments: '-Triplet x64-linux -BuildReason $(Build.Reason) -BinarySourceStub "$(X_VCPKG_BINARY_SOURCE_STUB)" -WorkingRoot ${{ variables.WORKING_ROOT }} -ArtifactStagingDirectory $(Build.ArtifactStagingDirectory)'
|
2021-01-21 04:07:41 +08:00
|
|
|
pwsh: true
|
2020-05-05 03:12:07 +08:00
|
|
|
- bash: |
|
|
|
|
df -h
|
|
|
|
displayName: 'Report on Disk Space After Build'
|
|
|
|
condition: always()
|
2020-04-29 13:16:12 +08:00
|
|
|
- task: PublishBuildArtifacts@1
|
2020-08-23 13:23:59 +08:00
|
|
|
displayName: 'Publish Artifact: failure logs for x64-linux'
|
2020-04-29 13:16:12 +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-linux'
|
2021-09-29 05:00:33 +08:00
|
|
|
condition: ne(variables['FAILURE_LOGS_EMPTY'], 'True')
|
2020-07-07 04:38:22 +08:00
|
|
|
- bash: |
|
|
|
|
python3 scripts/file_script.py /mnt/vcpkg-ci/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-linux'
|
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-linux'
|