diff options
author | Oliver Smith-Denny <osde@microsoft.com> | 2024-12-03 14:52:41 -0800 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2024-12-10 23:42:09 +0000 |
commit | 1c5c951ec33b7851da67feeaf222d3edd6eb89be (patch) | |
tree | 31221487f2115bfc0f5ce898f1412e5296e77df9 /.azurepipelines | |
parent | bcbb7099594af28b5ba40521ba2ecef253adaa9f (diff) | |
download | edk2-1c5c951ec33b7851da67feeaf222d3edd6eb89be.tar.gz |
Update CI to VS2022
This PR updates the CI pipelines to use VS2022 instead of VS2019
as that is the latest supported VS toolchain on edk2.
Continuous-integration-options: PatchCheck.ignore-multi-package
Signed-off-by: Oliver Smith-Denny <osde@microsoft.com>
Diffstat (limited to '.azurepipelines')
-rw-r--r-- | .azurepipelines/Windows-VS2019.yml | 6 | ||||
-rw-r--r-- | .azurepipelines/templates/pr-gate-build-job.yml | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/.azurepipelines/Windows-VS2019.yml b/.azurepipelines/Windows-VS2019.yml index 58bb98d42b..6dd48eafb1 100644 --- a/.azurepipelines/Windows-VS2019.yml +++ b/.azurepipelines/Windows-VS2019.yml @@ -1,5 +1,5 @@ ## @file
-# Azure Pipeline build file for a build using Windows and VS2019
+# Azure Pipeline build file for a build using Windows and VS2022
#
# Copyright (c) Microsoft Corporation.
# SPDX-License-Identifier: BSD-2-Clause-Patent
@@ -18,8 +18,8 @@ variables: jobs:
- template: templates/pr-gate-build-job.yml
parameters:
- tool_chain_tag: 'VS2019'
- vm_image: 'windows-2019'
+ tool_chain_tag: 'VS2022'
+ vm_image: 'windows-2022'
arch_list: "IA32,X64"
usePythonVersion: ${{ variables.default_python_version }}
extra_install_step:
diff --git a/.azurepipelines/templates/pr-gate-build-job.yml b/.azurepipelines/templates/pr-gate-build-job.yml index 3cad858ea2..4d13f25197 100644 --- a/.azurepipelines/templates/pr-gate-build-job.yml +++ b/.azurepipelines/templates/pr-gate-build-job.yml @@ -98,7 +98,7 @@ jobs: clean: all
pool:
- vmImage: 'windows-2019'
+ vmImage: 'windows-2022'
steps:
- checkout: self
|