2020-04-21 17:12:21 -07:00
|
|
|
# Copyright (c) Microsoft Corporation.
|
|
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
#
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
- job: ${{ parameters.jobName }}
|
|
|
|
pool:
|
2020-04-28 13:02:39 -07:00
|
|
|
name: ${{ parameters.poolName }}
|
2020-05-19 12:23:39 -07:00
|
|
|
workspace:
|
|
|
|
clean: resources
|
2020-04-21 17:12:21 -07:00
|
|
|
timeoutInMinutes: 1440 # 1 day
|
2020-08-10 10:22:51 -07:00
|
|
|
variables:
|
|
|
|
- name: WORKING_ROOT
|
|
|
|
value: D:\
|
|
|
|
- name: VCPKG_DOWNLOADS
|
|
|
|
value: D:\downloads
|
2020-04-21 17:12:21 -07:00
|
|
|
|
|
|
|
steps:
|
2020-06-25 16:38:13 -07:00
|
|
|
- task: PowerShell@2
|
|
|
|
displayName: 'Report on Disk Space'
|
|
|
|
condition: always()
|
|
|
|
inputs:
|
|
|
|
filePath: 'scripts/azure-pipelines/windows/disk-space.ps1'
|
2020-08-27 12:27:39 -07:00
|
|
|
pwsh: true
|
2020-07-07 14:09:33 -07:00
|
|
|
# Note: D: is the Azure machines' temporary disk.
|
2020-08-10 10:22:51 -07:00
|
|
|
- script: .\bootstrap-vcpkg.bat
|
2021-02-04 10:15:44 -08:00
|
|
|
displayName: 'Bootstrap vcpkg'
|
2021-05-26 13:40:48 -07:00
|
|
|
- script: |
|
|
|
|
dir ${{ variables.VCPKG_DOWNLOADS }} 2>&1 || (call )
|
|
|
|
dir ${{ variables.VCPKG_DOWNLOADS }}\tools 2>&1 || (call )
|
|
|
|
dir ${{ variables.VCPKG_DOWNLOADS }}\tools\msys2 2>&1 || (call )
|
|
|
|
rmdir /S /Q ${{ variables.VCPKG_DOWNLOADS }}\tools\msys2 2>&1 || (call )
|
|
|
|
displayName: 'Clean msys2 downloads'
|
2020-04-21 17:12:21 -07:00
|
|
|
- task: PowerShell@2
|
2020-06-25 16:36:28 -07:00
|
|
|
displayName: '*** Test Modified Ports and Prepare Test Logs ***'
|
2020-04-21 17:12:21 -07:00
|
|
|
inputs:
|
|
|
|
failOnStderr: true
|
2020-06-25 16:36:28 -07:00
|
|
|
filePath: 'scripts/azure-pipelines/test-modified-ports.ps1'
|
2020-12-22 14:52:58 -08:00
|
|
|
arguments: '-Triplet ${{ parameters.triplet }} -BuildReason $(Build.Reason) -UseEnvironmentSasToken -WorkingRoot ${{ variables.WORKING_ROOT }} -ArtifactStagingDirectory $(Build.ArtifactStagingDirectory)'
|
2020-08-27 12:27:39 -07:00
|
|
|
pwsh: true
|
2020-06-25 16:38:13 -07:00
|
|
|
- task: PowerShell@2
|
2021-01-16 15:54:44 -08:00
|
|
|
displayName: 'Validate version files'
|
|
|
|
condition: eq('${{ parameters.triplet }}', 'x86-windows')
|
|
|
|
inputs:
|
|
|
|
targetType: inline
|
|
|
|
script: |
|
|
|
|
./vcpkg.exe --feature-flags=versions x-ci-verify-versions --verbose
|
|
|
|
pwsh: true
|
|
|
|
- task: PowerShell@2
|
2020-06-25 16:38:13 -07:00
|
|
|
displayName: 'Report on Disk Space After Build'
|
|
|
|
condition: always()
|
|
|
|
inputs:
|
|
|
|
filePath: 'scripts/azure-pipelines/windows/disk-space.ps1'
|
2020-08-27 12:27:39 -07:00
|
|
|
pwsh: true
|
2020-04-21 17:12:21 -07:00
|
|
|
- task: PublishBuildArtifacts@1
|
2020-08-22 22:23:59 -07:00
|
|
|
displayName: 'Publish Artifact: failure logs for ${{ parameters.triplet }}'
|
2020-04-21 17:12:21 -07:00
|
|
|
inputs:
|
2020-09-21 17:27:35 -07:00
|
|
|
PathtoPublish: '$(Build.ArtifactStagingDirectory)\failure-logs'
|
2020-08-22 22:23:59 -07:00
|
|
|
ArtifactName: 'failure logs for ${{ parameters.triplet }}'
|
2020-10-27 15:35:28 -07:00
|
|
|
condition: always()
|
2020-07-06 13:38:22 -07:00
|
|
|
- task: PowerShell@2
|
2020-08-22 22:23:59 -07:00
|
|
|
displayName: 'Build a file list for all packages'
|
2020-07-13 12:14:51 -07:00
|
|
|
condition: always()
|
2020-07-06 13:38:22 -07:00
|
|
|
inputs:
|
|
|
|
targetType: inline
|
|
|
|
script: |
|
|
|
|
./vcpkg.exe fetch python3
|
|
|
|
& $(.\vcpkg fetch python3) .\scripts\file_script.py D:\installed\vcpkg\info\
|
2020-08-27 12:27:39 -07:00
|
|
|
pwsh: true
|
2020-07-06 13:38:22 -07:00
|
|
|
- task: PublishBuildArtifacts@1
|
2020-08-22 22:23:59 -07:00
|
|
|
displayName: 'Publish Artifact: file lists for ${{ parameters.triplet }}'
|
2020-07-13 12:14:51 -07:00
|
|
|
condition: always()
|
2020-07-06 13:38:22 -07:00
|
|
|
inputs:
|
|
|
|
PathtoPublish: scripts/list_files
|
2020-08-22 22:23:59 -07:00
|
|
|
ArtifactName: 'file lists for ${{ parameters.triplet }}'
|