Skip to content

Commit e79244a

Browse files
authored
.sync/MuDevOpsWrapper.yml: Add extra_steps parameter (#536)
Jobs/PrGate.yml has an `extra_steps` parameter that allows for additional steps to run before it calls Steps/PrGate.yml. This change allows a MuDevopsWrapper.yml pipeline to pass through build steps using this parameter. Signed-off-by: Michael Kubacki <michael.kubacki@microsoft.com>
1 parent c75015c commit e79244a

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

.sync/azure_pipelines/MuDevOpsWrapper.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,11 @@ parameters:
6767
type: stepList
6868
default:
6969
- script: echo No extra steps provided
70+
- name: extra_steps
71+
displayName: Extra Steps to Run Before Build Steps
72+
type: stepList
73+
default:
74+
- script: echo No extra steps provided
7075
- name: extra_jobs
7176
displayName: Extra Jobs to be run after build
7277
type: jobList
@@ -97,6 +102,7 @@ jobs:
97102
os_type: ${{ parameters.os_type }}
98103
pool_name: ${{ parameters.pool_name }}
99104
extra_install_step: ${{ parameters.extra_install_step }}
105+
extra_steps: ${{ parameters.extra_steps }}
100106
tool_chain_tag: $(tool_chain_tag)
101107
vm_image: $(vm_image)
102108
container_build: ${{ parameters.container_build }}

0 commit comments

Comments
 (0)