]> git.proxmox.com Git - mirror_edk2.git/blob - .azurepipelines/Windows-VS2019.yml
OvmfPkg/PlatformInitLib: catch QEMU's CPU hotplug reg block regression
[mirror_edk2.git] / .azurepipelines / Windows-VS2019.yml
1 ## @file
2 # Azure Pipeline build file for a build using Windows and VS2019
3 #
4 # Copyright (c) Microsoft Corporation.
5 # SPDX-License-Identifier: BSD-2-Clause-Patent
6 ##
7 trigger:
8 - master
9 - stable/*
10
11 pr:
12 - master
13 - stable/*
14
15 variables:
16 - template: templates/defaults.yml
17
18 jobs:
19 - template: templates/pr-gate-build-job.yml
20 parameters:
21 tool_chain_tag: 'VS2019'
22 vm_image: 'windows-2019'
23 arch_list: "IA32,X64"
24 usePythonVersion: ${{ variables.default_python_version }}
25 extra_install_step:
26 - powershell: choco install opencppcoverage; Write-Host "##vso[task.prependpath]C:\Program Files\OpenCppCoverage"
27 displayName: Install Code Coverage Tool
28 condition: and(gt(variables.pkg_count, 0), succeeded())
29