2020-04-22 08:12:21 +08:00
|
|
|
# Copyright (c) Microsoft Corporation.
|
|
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
#
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
- job: ${{ parameters.jobName }}
|
|
|
|
pool:
|
2020-04-29 04:02:39 +08:00
|
|
|
name: ${{ parameters.poolName }}
|
2020-05-20 03:23:39 +08:00
|
|
|
workspace:
|
|
|
|
clean: resources
|
2020-04-22 08:12:21 +08:00
|
|
|
timeoutInMinutes: 1440 # 1 day
|
2020-08-11 01:22:51 +08:00
|
|
|
variables:
|
|
|
|
- name: WORKING_ROOT
|
|
|
|
value: D:\
|
|
|
|
- name: VCPKG_DOWNLOADS
|
|
|
|
value: D:\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-04-22 08:12:21 +08:00
|
|
|
|
|
|
|
steps:
|
2020-06-26 07:38:13 +08:00
|
|
|
- task: PowerShell@2
|
|
|
|
displayName: 'Report on Disk Space'
|
|
|
|
condition: always()
|
|
|
|
inputs:
|
|
|
|
filePath: 'scripts/azure-pipelines/windows/disk-space.ps1'
|
2020-08-28 03:27:39 +08:00
|
|
|
pwsh: true
|
2021-06-23 10:16:04 +08:00
|
|
|
# Note: E: is the Azure machines' temporary disk.
|
2020-08-11 01:22:51 +08:00
|
|
|
- script: .\bootstrap-vcpkg.bat
|
2021-02-05 02:15:44 +08:00
|
|
|
displayName: 'Bootstrap vcpkg'
|
2021-05-27 04:40:48 +08:00
|
|
|
- script: |
|
2021-08-03 06:16:08 +08:00
|
|
|
if exist ${{ variables.VCPKG_DOWNLOADS }} rmdir /S /Q ${{ variables.VCPKG_DOWNLOADS }} 2>&1
|
2021-08-03 05:15:48 +08:00
|
|
|
displayName: 'Clean downloads'
|
2020-04-22 08:12:21 +08:00
|
|
|
- task: PowerShell@2
|
2020-06-26 07:36:28 +08:00
|
|
|
displayName: '*** Test Modified Ports and Prepare Test Logs ***'
|
2020-04-22 08:12:21 +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 ${{ parameters.triplet }} -BuildReason $(Build.Reason) -BinarySourceStub "$(X_VCPKG_BINARY_SOURCE_STUB)" -WorkingRoot ${{ variables.WORKING_ROOT }} -ArtifactStagingDirectory $(Build.ArtifactStagingDirectory)'
|
2020-08-28 03:27:39 +08:00
|
|
|
pwsh: true
|
2020-06-26 07:38:13 +08:00
|
|
|
- task: PowerShell@2
|
2021-01-17 07:54:44 +08:00
|
|
|
displayName: 'Validate version files'
|
|
|
|
condition: eq('${{ parameters.triplet }}', 'x86-windows')
|
|
|
|
inputs:
|
|
|
|
targetType: inline
|
|
|
|
script: |
|
2021-07-29 03:15:10 +08:00
|
|
|
./vcpkg.exe --feature-flags=versions x-ci-verify-versions --verbose |
|
|
|
|
ForEach-Object -Begin {
|
|
|
|
$long_error = ''
|
|
|
|
} -Process {
|
|
|
|
if ($long_error -ne '' -and $_ -match '^$|^ ') {
|
|
|
|
# Extend multi-line message
|
|
|
|
$long_error = -join($long_error, "%0D%0A", $_ -replace '^ ','' `
|
|
|
|
-replace '(git add) [^ ]*\\ports\\([^ ]*)', '$1 ports/$2' )
|
|
|
|
} else {
|
|
|
|
if ($long_error -ne '') {
|
|
|
|
# Flush multi-line message
|
|
|
|
$long_error
|
|
|
|
$long_error = ''
|
|
|
|
}
|
|
|
|
if ($_ -match '^Error: ') {
|
|
|
|
# Start multi-line message
|
|
|
|
$long_error = $_ -replace '^Error: ', '##vso[task.logissue type=error]' `
|
|
|
|
-replace '(^##vso[^\]]*)](.*) [^ ]*\\versions\\(.-)\\(.*.json)(.*)', '$1;sourcepath=versions/$3/$4;linenumber=2]$2 version/$3/$4$5'
|
|
|
|
} else {
|
|
|
|
# Normal line
|
|
|
|
$_
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} -End {
|
|
|
|
if ($long_error -ne '') {
|
|
|
|
# Flush multi-line message
|
|
|
|
$long_error
|
|
|
|
}
|
|
|
|
}
|
2021-01-17 07:54:44 +08:00
|
|
|
pwsh: true
|
|
|
|
- task: PowerShell@2
|
2020-06-26 07:38:13 +08:00
|
|
|
displayName: 'Report on Disk Space After Build'
|
|
|
|
condition: always()
|
|
|
|
inputs:
|
|
|
|
filePath: 'scripts/azure-pipelines/windows/disk-space.ps1'
|
2020-08-28 03:27:39 +08:00
|
|
|
pwsh: true
|
2020-04-22 08:12:21 +08:00
|
|
|
- task: PublishBuildArtifacts@1
|
2020-08-23 13:23:59 +08:00
|
|
|
displayName: 'Publish Artifact: failure logs for ${{ parameters.triplet }}'
|
2020-04-22 08:12:21 +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 ${{ parameters.triplet }}'
|
2020-10-28 06:35:28 +08:00
|
|
|
condition: always()
|
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
|
2020-08-23 13:23:59 +08:00
|
|
|
displayName: 'Publish Artifact: file lists for ${{ parameters.triplet }}'
|
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 ${{ parameters.triplet }}'
|