Repo File Sync: Add extra_cargo_steps parameter to MuDevOpsWrapper.yml (#175)

synced local file(s) with
[microsoft/mu_devops](https://github.com/microsoft/mu_devops).

🤖: View the [Repo File Sync Configuration
File](https://github.com/microsoft/mu_devops/blob/main/.sync/Files.yml)
to see how files are synced.

---

This PR was created automatically by the
[repo-file-sync-action](https://github.com/BetaHuhn/repo-file-sync-action)
workflow run
[#6035269178](https://github.com/microsoft/mu_devops/actions/runs/6035269178)

Signed-off-by: Project Mu UEFI Bot <uefibot@microsoft.com>
This commit is contained in:
Project Mu UEFI Bot [bot] 2023-08-31 13:57:00 -04:00 коммит произвёл GitHub
Родитель 3dcc6f8019
Коммит fd4fa17fe2
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -71,6 +71,11 @@ parameters:
displayName: Whether Rust code is being built
type: boolean
default: false
- name: extra_cargo_steps
displayName: Extra Steps to Run Before Standard Cargo Steps
type: stepList
default:
- script: echo No extra cargo steps provided
jobs:
- template: Jobs/PrGate.yml@mu_devops
@ -106,6 +111,7 @@ jobs:
- checkout: self
fetchDepth: 1
clean: true
- ${{ parameters.extra_cargo_steps }}
- template: Steps/RustCargoSteps.yml@mu_devops
- ${{ parameters.extra_jobs }}