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
|
|
|
|
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: |
|
2020-06-04 10:31:28 +08:00
|
|
|
sudo mkdir /mnt/vcpkg-ci -m=777
|
|
|
|
sudo mkdir /mnt/vcpkg-ci/downloads -m=777
|
|
|
|
exit 0
|
|
|
|
displayName: 'Create /mnt/vcpkg-ci/downloads'
|
2020-04-29 13:16:12 +08:00
|
|
|
- task: Bash@3
|
|
|
|
displayName: 'Build vcpkg'
|
|
|
|
inputs:
|
|
|
|
filePath: bootstrap-vcpkg.sh
|
2020-05-15 03:49:31 +08:00
|
|
|
arguments: "-buildTests"
|
2020-06-04 10:31:28 +08:00
|
|
|
env:
|
|
|
|
VCPKG_DOWNLOADS: '/mnt/vcpkg-ci/downloads'
|
2020-05-15 03:49:31 +08:00
|
|
|
- bash: toolsrc/build.rel/vcpkg-test
|
|
|
|
displayName: 'Run vcpkg tests'
|
2020-04-29 13:16:12 +08:00
|
|
|
- powershell: |
|
2020-06-04 13:50:07 +08:00
|
|
|
./vcpkg x-ci-clean --x-xunit="$(System.ArtifactsDirectory)/xml-results/x64-linux.xml" --exclude=$skipList --binarycaching --x-binarysource=clear`;files`,/archives`,upload --x-buildtrees-root=/mnt/vcpkg-ci/buildtrees --x-install-root=/mnt/vcpkg-ci/install --x-packages-root=/mnt/vcpkg-ci/packages
|
2020-04-29 13:16:12 +08:00
|
|
|
$skipList = ./scripts/azure-pipelines/generate-skip-list.ps1 -Triplet "x64-linux" -BaselineFile "$(System.DefaultWorkingDirectory)/scripts/ci.baseline.txt"
|
|
|
|
mkdir $(System.ArtifactsDirectory)/xml-results
|
2020-05-26 02:52:48 +08:00
|
|
|
$env:HOME = '/home/agent'
|
2020-06-04 10:31:28 +08:00
|
|
|
./vcpkg ci x64-linux --x-xunit="$(System.ArtifactsDirectory)/xml-results/x64-linux.xml" --exclude=$skipList --binarycaching --x-binarysource=clear`;files`,/archives`,upload --x-buildtrees-root=/mnt/vcpkg-ci/buildtrees --x-install-root=/mnt/vcpkg-ci/install --x-packages-root=/mnt/vcpkg-ci/packages --downloads-root=/mnt/vcpkg-ci/downloads
|
2020-04-29 13:16:12 +08:00
|
|
|
displayName: '** Test Modified Ports **'
|
|
|
|
- task: PowerShell@2
|
|
|
|
displayName: 'Analyze results and prepare test logs'
|
|
|
|
inputs:
|
|
|
|
failOnStderr: true
|
|
|
|
filePath: 'scripts/azure-pipelines/analyze-test-results.ps1'
|
2020-06-04 10:31:28 +08:00
|
|
|
arguments: '-baselineFile $(System.DefaultWorkingDirectory)/scripts/ci.baseline.txt -logDir "$(System.ArtifactsDirectory)/xml-results" -outputDir "$(Build.ArtifactStagingDirectory)" -failurelogDir "/archives/fail" -triplets "x64-linux" -errorOnRegression'
|
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
|
|
|
|
displayName: 'Publish Artifact: x86-linux Build Failure Logs'
|
|
|
|
inputs:
|
|
|
|
PathtoPublish: '$(Build.ArtifactStagingDirectory)/failureLogs'
|
|
|
|
ArtifactName: 'x64-linux port build failure logs'
|
|
|
|
condition: failed()
|