-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Sync pipelines and requirements with Basecore
- Loading branch information
1 parent
f7c7cbb
commit 52eb8b8
Showing
14 changed files
with
201 additions
and
608 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
## @file | ||
# Azure Pipeline build file for a build using Windows and the Visual Studio compiler | ||
# | ||
# Copyright (c) Microsoft Corporation. | ||
# SPDX-License-Identifier: BSD-2-Clause-Patent | ||
## | ||
# MU_CHANGE [BEGIN] | ||
trigger: | ||
- dev/* | ||
- release/202208 | ||
- release/202202 | ||
|
||
schedules: | ||
- cron: "0 8 * * 0,3" # Sun/Wed at 1AM Pacific | ||
displayName: Sun/Wed Build | ||
branches: | ||
include: | ||
- dev/* | ||
- release/202208 | ||
- release/202202 | ||
always: true # Always build, even if no changes | ||
|
||
pr: | ||
- dev/* | ||
- release/202208 | ||
- release/202202 | ||
|
||
resources: | ||
repositories: | ||
- repository: basecore | ||
type: github | ||
name: Microsoft/mu_basecore | ||
ref: refs/heads/release/202208 | ||
endpoint: Microsoft | ||
# MU_CHANGE [END] | ||
|
||
variables: | ||
- template: templates/defaults.yml | ||
|
||
jobs: | ||
- template: templates/pr-gate-build-job.yml | ||
parameters: | ||
tool_chain_tag: 'VS2022' | ||
vm_image: 'windows-2022' | ||
arch_list: "IA32,X64" | ||
usePythonVersion: ${{ variables.default_python_version }} | ||
extra_install_step: | ||
- powershell: choco install opencppcoverage; Write-Host "##vso[task.prependpath]C:\Program Files\OpenCppCoverage" | ||
displayName: Install Code Coverage Tool | ||
condition: and(gt(variables.pkg_count, 0), succeeded()) | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.