mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-12 10:39:01 +08:00
87 lines
3.9 KiB
YAML
87 lines
3.9 KiB
YAML
# Copyright (c) Microsoft Corporation.
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
parameters:
|
|
- name: vcpkgToolSha
|
|
displayName: 'Custom SHA of vcpkg-tool to use rather than bootstrap'
|
|
type: string
|
|
default: 'use default'
|
|
- name: jobName
|
|
type: string
|
|
default: 'x64_linux'
|
|
- name: tripletPattern
|
|
displayName: 'Enable the triplets which contain this substring'
|
|
type: string
|
|
default: ''
|
|
|
|
jobs:
|
|
- job: x64_linux
|
|
condition: and(succeeded(), contains('^${{ replace(parameters.jobName, '_', '-') }}$', '${{ parameters.tripletPattern }}'))
|
|
pool:
|
|
name: PrLin-1ES-Pool
|
|
workspace:
|
|
clean: resources
|
|
timeoutInMinutes: 1440 # 1 day
|
|
variables:
|
|
- name: WORKING_ROOT
|
|
value: /mnt/vcpkg-ci
|
|
- name: VCPKG_DOWNLOADS
|
|
value: /mnt/vcpkg-ci/downloads
|
|
steps:
|
|
# Note: /mnt is the Azure machines' temporary disk.
|
|
- bash: |
|
|
sudo mkdir /home/agent -m=777
|
|
sudo chown `id -u` /home/agent
|
|
sudo mkdir ${{ variables.WORKING_ROOT }} -m=777
|
|
sudo mkdir ${{ variables.VCPKG_DOWNLOADS }} -m=777
|
|
exit 0
|
|
displayName: 'Create working directories'
|
|
- bash: ./bootstrap-vcpkg.sh
|
|
displayName: 'Bootstrap vcpkg'
|
|
condition: eq('use default', '${{ parameters.vcpkgToolSha }}')
|
|
- bash: ./scripts/azure-pipelines/bootstrap-from-source.sh ${{ parameters.vcpkgToolSha }}
|
|
displayName: "Build vcpkg with CMake"
|
|
condition: ne('use default', '${{ parameters.vcpkgToolSha }}')
|
|
- task: AzureCLI@2
|
|
displayName: '*** Test Modified Ports'
|
|
inputs:
|
|
azureSubscription: 'VcpkgPrFleet'
|
|
scriptType: 'pscore'
|
|
scriptLocation: 'inlineScript'
|
|
inlineScript: |
|
|
$current = Get-Date -AsUtc
|
|
$endDate = $current.AddDays(2)
|
|
$end = Get-Date -Date $endDate -UFormat '+%Y-%m-%dT%H:%MZ'
|
|
$assetSas = az storage container generate-sas --name cache --account-name vcpkgassetcachewus3 --as-user --auth-mode login --https-only --permissions rcl --expiry $end -o tsv | Out-String
|
|
$assetSas = $assetSas.Trim()
|
|
$binarySas = az storage container generate-sas --name cache --account-name vcpkgbinarycachewus3 --as-user --auth-mode login --https-only --permissions rclw --expiry $end -o tsv | Out-String
|
|
$binarySas = $binarySas.Trim()
|
|
$env:X_VCPKG_ASSET_SOURCES = "x-azurl,https://vcpkgassetcachewus3.blob.core.windows.net/cache,$assetSas,readwrite"
|
|
& scripts/azure-pipelines/test-modified-ports.ps1 -Triplet ${{ replace(parameters.jobName, '_', '-') }} -BuildReason $(Build.Reason) -BinarySourceStub "x-azblob,https://vcpkgbinarycachewus3.blob.core.windows.net/cache,$binarySas" -WorkingRoot $env:WORKING_ROOT -ArtifactStagingDirectory $(Build.ArtifactStagingDirectory)
|
|
- task: PublishBuildArtifacts@1
|
|
displayName: "Publish Artifact: failure logs for ${{ replace(parameters.jobName, '_', '-') }}"
|
|
inputs:
|
|
PathtoPublish: '$(Build.ArtifactStagingDirectory)/failure-logs'
|
|
ArtifactName: "failure logs for ${{ replace(parameters.jobName, '_', '-') }}"
|
|
condition: ne(variables['FAILURE_LOGS_EMPTY'], 'True')
|
|
- bash: |
|
|
python3 scripts/file_script.py /mnt/vcpkg-ci/installed/vcpkg/info/
|
|
displayName: 'Build a file list for all packages'
|
|
condition: always()
|
|
- task: PublishBuildArtifacts@1
|
|
displayName: "Publish Artifact: file lists for ${{ replace(parameters.jobName, '_', '-') }}"
|
|
condition: always()
|
|
inputs:
|
|
PathtoPublish: scripts/list_files
|
|
ArtifactName: "file lists for ${{ replace(parameters.jobName, '_', '-') }}"
|
|
- task: PublishTestResults@2
|
|
displayName: 'Publish Test Results'
|
|
condition: ne(variables['XML_RESULTS_FILE'], '')
|
|
inputs:
|
|
testRunTitle: ${{ replace(parameters.jobName, '_', '-') }}
|
|
testResultsFormat: xUnit
|
|
testResultsFiles: $(XML_RESULTS_FILE)
|
|
platform: ${{ replace(parameters.jobName, '_', '-') }}
|
|
configuration: static
|