2020-04-22 08:12:21 +08:00
|
|
|
# Copyright (c) Microsoft Corporation.
|
|
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
#
|
|
|
|
|
2022-05-24 04:33:58 +08:00
|
|
|
parameters:
|
|
|
|
- name: vcpkgToolSha
|
|
|
|
displayName: 'Custom SHA of vcpkg-tool to use rather than bootstrap'
|
|
|
|
type: string
|
|
|
|
default: 'use default'
|
|
|
|
- name: jobName
|
|
|
|
type: string
|
|
|
|
default: 'x86_windows'
|
2023-02-25 03:32:02 +08:00
|
|
|
- name: tripletPattern
|
|
|
|
displayName: 'Enable the triplets which contain this substring'
|
|
|
|
type: string
|
|
|
|
default: ''
|
2022-05-24 04:33:58 +08:00
|
|
|
|
2020-04-22 08:12:21 +08:00
|
|
|
jobs:
|
|
|
|
- job: ${{ parameters.jobName }}
|
2024-04-26 09:25:03 +08:00
|
|
|
condition: and(succeeded(), contains('^${{ replace(parameters.jobName, '_', '-') }}$', '${{ parameters.tripletPattern }}'))
|
2020-04-22 08:12:21 +08:00
|
|
|
pool:
|
2024-05-25 13:22:47 +08:00
|
|
|
name: PrWin-1ES
|
2024-07-16 14:18:52 +08:00
|
|
|
demands: ImageVersionOverride -equals 2024.07.12
|
2020-05-20 03:23:39 +08:00
|
|
|
workspace:
|
|
|
|
clean: resources
|
2022-03-17 04:53:13 +08:00
|
|
|
timeoutInMinutes: 2880 # 2 days
|
2020-08-11 01:22:51 +08:00
|
|
|
variables:
|
|
|
|
- name: WORKING_ROOT
|
|
|
|
value: D:\
|
|
|
|
- name: VCPKG_DOWNLOADS
|
|
|
|
value: D:\downloads
|
2021-09-29 04:51:42 +08:00
|
|
|
- name: DiffFile
|
|
|
|
value: $(Build.ArtifactStagingDirectory)\format.diff
|
|
|
|
- name: ExtraChecksTriplet
|
|
|
|
value: x86-windows
|
2020-04-22 08:12:21 +08:00
|
|
|
steps:
|
2020-08-11 01:22:51 +08:00
|
|
|
- script: .\bootstrap-vcpkg.bat
|
2021-02-05 02:15:44 +08:00
|
|
|
displayName: 'Bootstrap vcpkg'
|
2022-05-24 04:33:58 +08:00
|
|
|
condition: eq('use default', '${{ parameters.vcpkgToolSha }}')
|
|
|
|
- script: .\scripts\azure-pipelines\windows\bootstrap-from-source.cmd ${{ parameters.vcpkgToolSha }}
|
|
|
|
displayName: "Build vcpkg with CMake"
|
|
|
|
condition: ne('use default', '${{ parameters.vcpkgToolSha }}')
|
2021-09-29 04:51:42 +08:00
|
|
|
- script: '.\vcpkg.exe format-manifest --all'
|
|
|
|
displayName: 'Format Manifests'
|
2024-04-26 09:25:03 +08:00
|
|
|
condition: eq('${{ replace(parameters.jobName, '_', '-') }}', '${{ variables.ExtraChecksTriplet }}')
|
|
|
|
- task: PowerShell@2
|
2021-09-29 04:51:42 +08:00
|
|
|
displayName: 'Create Diff'
|
2024-04-26 09:25:03 +08:00
|
|
|
condition: eq('${{ replace(parameters.jobName, '_', '-') }}', '${{ variables.ExtraChecksTriplet }}')
|
2021-09-29 04:51:42 +08:00
|
|
|
inputs:
|
|
|
|
filePath: scripts/azure-pipelines/Create-PRDiff.ps1
|
|
|
|
arguments: "-DiffFile '$(DiffFile)'"
|
|
|
|
pwsh: true
|
|
|
|
- task: PublishBuildArtifacts@1
|
|
|
|
displayName: 'Publish Format and Documentation Diff'
|
2024-04-26 09:25:03 +08:00
|
|
|
condition: and(eq('${{ replace(parameters.jobName, '_', '-') }}', '${{ variables.ExtraChecksTriplet }}'), failed())
|
2021-09-29 04:51:42 +08:00
|
|
|
inputs:
|
|
|
|
PathtoPublish: '$(DiffFile)'
|
|
|
|
ArtifactName: 'format.diff'
|
2024-07-16 14:18:52 +08:00
|
|
|
- task: AzureCLI@2
|
2022-05-24 04:33:58 +08:00
|
|
|
displayName: '*** Test Modified Ports'
|
2020-04-22 08:12:21 +08:00
|
|
|
inputs:
|
2024-07-16 14:18:52 +08:00
|
|
|
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)
|
2020-06-26 07:38:13 +08:00
|
|
|
- task: PowerShell@2
|
2021-01-17 07:54:44 +08:00
|
|
|
displayName: 'Validate version files'
|
2024-04-26 09:25:03 +08:00
|
|
|
condition: eq('${{ replace(parameters.jobName, '_', '-') }}', '${{ variables.ExtraChecksTriplet }}')
|
2021-01-17 07:54:44 +08:00
|
|
|
inputs:
|
2022-05-24 04:33:58 +08:00
|
|
|
filePath: 'scripts/azure-pipelines/windows/validate-version-files.ps1'
|
2020-08-28 03:27:39 +08:00
|
|
|
pwsh: true
|
2020-04-22 08:12:21 +08:00
|
|
|
- task: PublishBuildArtifacts@1
|
2024-04-26 09:25:03 +08:00
|
|
|
displayName: "Publish Artifact: failure logs for ${{ replace(parameters.jobName, '_', '-') }}"
|
2020-04-22 08:12:21 +08:00
|
|
|
inputs:
|
2020-09-22 08:27:35 +08:00
|
|
|
PathtoPublish: '$(Build.ArtifactStagingDirectory)\failure-logs'
|
2024-04-26 09:25:03 +08:00
|
|
|
ArtifactName: "failure logs for ${{ replace(parameters.jobName, '_', '-') }}"
|
2021-09-29 05:00:33 +08:00
|
|
|
condition: ne(variables['FAILURE_LOGS_EMPTY'], 'True')
|
2020-07-07 04:38:22 +08:00
|
|
|
- task: PowerShell@2
|
2020-08-23 13:23:59 +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
|
|
|
inputs:
|
|
|
|
targetType: inline
|
|
|
|
script: |
|
|
|
|
./vcpkg.exe fetch python3
|
|
|
|
& $(.\vcpkg fetch python3) .\scripts\file_script.py D:\installed\vcpkg\info\
|
2020-08-28 03:27:39 +08:00
|
|
|
pwsh: true
|
2020-07-07 04:38:22 +08:00
|
|
|
- task: PublishBuildArtifacts@1
|
2024-04-26 09:25:03 +08:00
|
|
|
displayName: "Publish Artifact: file lists for ${{ replace(parameters.jobName, '_', '-') }}"
|
2020-07-14 03:14:51 +08:00
|
|
|
condition: always()
|
2020-07-07 04:38:22 +08:00
|
|
|
inputs:
|
|
|
|
PathtoPublish: scripts/list_files
|
2024-04-26 09:25:03 +08:00
|
|
|
ArtifactName: "file lists for ${{ replace(parameters.jobName, '_', '-') }}"
|
2022-06-16 02:20:52 +08:00
|
|
|
- task: PublishTestResults@2
|
|
|
|
displayName: 'Publish Test Results'
|
|
|
|
condition: ne(variables['XML_RESULTS_FILE'], '')
|
|
|
|
inputs:
|
2024-04-26 09:25:03 +08:00
|
|
|
testRunTitle: ${{ replace(parameters.jobName, '_', '-') }}
|
2022-06-16 02:20:52 +08:00
|
|
|
testResultsFormat: xUnit
|
|
|
|
testResultsFiles: $(XML_RESULTS_FILE)
|
2024-04-26 09:25:03 +08:00
|
|
|
platform: ${{ replace(parameters.jobName, '_', '-') }}
|