Skip to content

Commit c17a513

Browse files
authored
Add PME override for manual builds (#81353)
1 parent fa2429c commit c17a513

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

azure-pipelines-official.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,10 @@ parameters:
3737
type: boolean
3838
default: true
3939

40+
- name: PMEOverride
41+
type: boolean
42+
default: false
43+
4044
schedules:
4145
- cron: "0 8 23-29 * 0"
4246
displayName: "Monthly smoke test"
@@ -270,7 +274,7 @@ extends:
270274
zipSources: false
271275
feedSource: https://dnceng.pkgs.visualstudio.com/_packaging/MicroBuildToolset/nuget/v3/index.json
272276
# Set ConnectedPMEServiceName if the build is a CI build, otherwise it is not needed
273-
${{ if eq(variables['Build.Reason'], 'IndividualCI') }}:
277+
${{ if or(eq(variables['Build.Reason'], 'IndividualCI'), parameters.PMEOverride) }}:
274278
ConnectedPMEServiceName: 248d384a-b39b-46e3-8ad5-c2c210d5e7ca
275279
condition: and(succeeded(), in('${{ parameters.SignType }}', 'test', 'real'))
276280

0 commit comments

Comments
 (0)