mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-03 21:59:19 +08:00
b8755728ab
* Adds scripts to generate scale sets for testing Linux. * Note workaround for https://github.com/microsoft/azure-pipelines-agent/pull/2929 * Switches Windows validation to 'Spot' VMs. * Opens the git port 9418. * Removes provisioning of the no longer used 'logs' file share. * Changes Azure region to 'westus2', which is cheaper. * Adds +x to all the scripts in scripts/azure-pipelines. * Use 'xml-results' for all platforms instead of 'raw xml results' on Windows.
40 lines
1.6 KiB
YAML
40 lines
1.6 KiB
YAML
# Copyright (c) Microsoft Corporation.
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
jobs:
|
|
- job: x64_linux
|
|
pool:
|
|
name: ${{ parameters.poolName }}
|
|
|
|
timeoutInMinutes: 1440 # 1 day
|
|
|
|
steps:
|
|
- task: Bash@3
|
|
displayName: 'Initialize Environment'
|
|
inputs:
|
|
filePath: scripts/azure-pipelines/linux/initialize-environment.sh
|
|
- task: Bash@3
|
|
displayName: 'Build vcpkg'
|
|
inputs:
|
|
filePath: bootstrap-vcpkg.sh
|
|
- powershell: |
|
|
$skipList = ./scripts/azure-pipelines/generate-skip-list.ps1 -Triplet "x64-linux" -BaselineFile "$(System.DefaultWorkingDirectory)/scripts/ci.baseline.txt"
|
|
mkdir $(System.ArtifactsDirectory)/xml-results
|
|
mkdir /ci/home
|
|
$env:HOME = '/ci/home'
|
|
./vcpkg ci x64-linux --x-xunit="$(System.ArtifactsDirectory)/xml-results/x64-linux.xml" --exclude=$skipList --binarycaching
|
|
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'
|
|
arguments: '-baselineFile $(System.DefaultWorkingDirectory)/scripts/ci.baseline.txt -logDir "$(System.ArtifactsDirectory)/xml-results" -outputDir "$(Build.ArtifactStagingDirectory)" -failurelogDir "archives/fail" -triplets "x64-linux" -errorOnRegression'
|
|
- 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()
|