mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-03 16:40:05 +08:00
0e914ba681
* [scripts-audit] vcpkg_acquire_msys (#17687) * [vcpkg.cmake] Change find_package function -> macro in order to shorten trace (#17997) switch from function to macro * [scripts-audit] z_vcpkg_apply_patches (#18013) * [scripts-audit] z_vcpkg_escape_regex_control_characters (#18013) * [scripts-audit] vcpkg_fail_port_install (#18054) Note that this change allows existing failures; it changes MATCHES to STREQUAL, meaning that vcpkg_fail_port_install(ON_ARCH "arm") now succeeds on arm64; this change in behavior is fine (IMO) since it strictly succeeds when it used to fail.
76 lines
2.7 KiB
YAML
76 lines
2.7 KiB
YAML
# Copyright (c) Microsoft Corporation.
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
jobs:
|
|
- job: ${{ parameters.jobName }}
|
|
pool:
|
|
name: ${{ parameters.poolName }}
|
|
workspace:
|
|
clean: resources
|
|
timeoutInMinutes: 1440 # 1 day
|
|
variables:
|
|
- name: WORKING_ROOT
|
|
value: D:\
|
|
- name: VCPKG_DOWNLOADS
|
|
value: D:\downloads
|
|
|
|
steps:
|
|
- task: PowerShell@2
|
|
displayName: 'Report on Disk Space'
|
|
condition: always()
|
|
inputs:
|
|
filePath: 'scripts/azure-pipelines/windows/disk-space.ps1'
|
|
pwsh: true
|
|
# Note: D: is the Azure machines' temporary disk.
|
|
- script: .\bootstrap-vcpkg.bat
|
|
displayName: 'Bootstrap vcpkg'
|
|
- 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'
|
|
- task: PowerShell@2
|
|
displayName: '*** Test Modified Ports and Prepare Test Logs ***'
|
|
inputs:
|
|
failOnStderr: true
|
|
filePath: 'scripts/azure-pipelines/test-modified-ports.ps1'
|
|
arguments: '-Triplet ${{ parameters.triplet }} -BuildReason $(Build.Reason) -UseEnvironmentSasToken -WorkingRoot ${{ variables.WORKING_ROOT }} -ArtifactStagingDirectory $(Build.ArtifactStagingDirectory)'
|
|
pwsh: true
|
|
- task: PowerShell@2
|
|
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
|
|
displayName: 'Report on Disk Space After Build'
|
|
condition: always()
|
|
inputs:
|
|
filePath: 'scripts/azure-pipelines/windows/disk-space.ps1'
|
|
pwsh: true
|
|
- task: PublishBuildArtifacts@1
|
|
displayName: 'Publish Artifact: failure logs for ${{ parameters.triplet }}'
|
|
inputs:
|
|
PathtoPublish: '$(Build.ArtifactStagingDirectory)\failure-logs'
|
|
ArtifactName: 'failure logs for ${{ parameters.triplet }}'
|
|
condition: always()
|
|
- task: PowerShell@2
|
|
displayName: 'Build a file list for all packages'
|
|
condition: always()
|
|
inputs:
|
|
targetType: inline
|
|
script: |
|
|
./vcpkg.exe fetch python3
|
|
& $(.\vcpkg fetch python3) .\scripts\file_script.py D:\installed\vcpkg\info\
|
|
pwsh: true
|
|
- task: PublishBuildArtifacts@1
|
|
displayName: 'Publish Artifact: file lists for ${{ parameters.triplet }}'
|
|
condition: always()
|
|
inputs:
|
|
PathtoPublish: scripts/list_files
|
|
ArtifactName: 'file lists for ${{ parameters.triplet }}'
|