Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update pipeline filenames #8637

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## @file
# Azure Pipeline build file for a build using ubuntu and GCC5
# Azure Pipeline build file for a build using ubuntu and GCC
#
# Copyright (c) Microsoft Corporation.
# Copyright (c) 2020, Hewlett Packard Enterprise Development LP. All rights reserved.<BR>
Expand Down
5 changes: 4 additions & 1 deletion .azurepipelines/ReadMe.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@ Focused on building a single target platform and confirming functionality on tha
* Platform CI files should be in the `<PlatformPkg>/.azurepipelines` folder.
* Core CI files are in the root folder.
* Shared templates are in the `templates` folder.
* Top level CI files should be named `<host os>-<tool_chain_tag>.yml`
* Top level CI files should be named `<host os>.yml`
* The pipeline YAML file name is referenced in Azure Pipelines. To allow flexibility for toolchain updates in the
YAML file without necessitating changes in Azure Pipelines, the toolchain is not included in the filename. For
example, `Windows.yml` is used instead of `Windows-VS2022.yml`.

## Links

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## @file
# Azure Pipeline build file for a build using Windows and VS2022
# Azure Pipeline build file for a build using Windows and Visual Studio
#
# Copyright (c) Microsoft Corporation.
# SPDX-License-Identifier: BSD-2-Clause-Patent
Expand Down
2 changes: 1 addition & 1 deletion .pytool/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ located [here](https://github.com/tianocore/edk2-pytool-library) and
[here](https://github.com/tianocore/edk2-pytool-extensions)).

The primary execution flows can be found in the
`.azurepipelines/Windows-VS2022.yml` and `.azurepipelines/Ubuntu-GCC5.yml`
`.azurepipelines/Windows.yml` and `.azurepipelines/Ubuntu.yml`
files. These YAML files are consumed by the Azure Dev Ops Build Pipeline and
dictate what server resources should be used, how they should be configured, and
what processes should be run on them. An overview of this schema can be found
Expand Down
Loading