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
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- task: PowerShell@2
|
|
|
|
displayName: 'Initialize Environment'
|
|
|
|
inputs:
|
|
|
|
filePath: 'scripts/azure-pipelines/windows/initialize-environment.ps1'
|
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-06-04 10:31:28 +08:00
|
|
|
# Note: D: is the Azure machines' temporary disk.
|
|
|
|
- task: CmdLine@2
|
2020-05-22 11:48:05 +08:00
|
|
|
displayName: 'Build vcpkg'
|
|
|
|
inputs:
|
2020-06-04 10:31:28 +08:00
|
|
|
script: |
|
|
|
|
set VCPKG_DOWNLOADS=D:\downloads
|
|
|
|
.\bootstrap-vcpkg.bat
|
2020-06-12 08:49:22 +08:00
|
|
|
- task: CmdLine@2
|
|
|
|
displayName: "Build vcpkg with CMake and Run Tests"
|
|
|
|
condition: eq('${{ parameters.triplet }}', 'x86-windows')
|
|
|
|
inputs:
|
|
|
|
script: |
|
|
|
|
:: TRANSITION, get these tools on the VMs next time we roll them
|
|
|
|
set VCPKG_DOWNLOADS=D:\downloads
|
|
|
|
.\vcpkg.exe fetch cmake
|
|
|
|
.\vcpkg.exe fetch ninja
|
|
|
|
set PATH=D:\downloads\tools\cmake-3.17.2-windows\cmake-3.17.2-win32-x86\bin;D:\downloads\tools\ninja-1.10.0-windows;%PATH%
|
|
|
|
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\Tools\VsDevCmd.bat" -arch=x86 -host_arch=x86
|
|
|
|
rmdir /s /q build.x86.debug > nul 2> nul
|
|
|
|
cmake.exe -G Ninja -DCMAKE_BUILD_TYPE=Debug -DBUILD_TESTING=ON -DVCPKG_DEVELOPMENT_WARNINGS=ON -DVCPKG_WARNINGS_AS_ERRORS=ON -DVCPKG_BUILD_FUZZING=ON -B build.x86.debug -S toolsrc
|
|
|
|
ninja.exe -C build.x86.debug
|
|
|
|
build.x86.debug\vcpkg-test.exe
|
2020-07-02 02:36:09 +08:00
|
|
|
powershell.exe -NoProfile -ExecutionPolicy Bypass "scripts\azure-pipelines\end-to-end-tests.ps1 -WorkingRoot \"%cd%\testing\" -triplet x86-windows"
|
2020-06-12 08:49:22 +08:00
|
|
|
failOnStderr: true
|
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'
|
|
|
|
arguments: '-Triplet ${{ parameters.triplet }} -BuildReason $(Build.Reason) -ArchivesRoot W:\ -WorkingRoot D:\ -ArtifactStagingDirectory $(Build.ArtifactStagingDirectory) -ArtifactsDirectory $(System.ArtifactsDirectory)'
|
|
|
|
- task: PublishTestResults@2
|
|
|
|
inputs:
|
|
|
|
testResultsFiles: '$(System.ArtifactsDirectory)/xml-results/${{ parameters.triplet }}.xml'
|
|
|
|
condition: always()
|
2020-06-26 07:38:13 +08:00
|
|
|
- task: PowerShell@2
|
|
|
|
displayName: 'Report on Disk Space After Build'
|
|
|
|
condition: always()
|
|
|
|
inputs:
|
|
|
|
filePath: 'scripts/azure-pipelines/windows/disk-space.ps1'
|
2020-04-22 08:12:21 +08:00
|
|
|
- task: PublishBuildArtifacts@1
|
2020-04-29 13:16:12 +08:00
|
|
|
displayName: 'Publish Artifact: ${{ parameters.triplet }} port build failure logs'
|
2020-04-22 08:12:21 +08:00
|
|
|
inputs:
|
|
|
|
PathtoPublish: '$(Build.ArtifactStagingDirectory)\failureLogs'
|
2020-04-29 13:16:12 +08:00
|
|
|
ArtifactName: '${{ parameters.triplet }} port build failure logs'
|
2020-04-22 08:12:21 +08:00
|
|
|
condition: failed()
|