Skip to content

Commit 82b3a7b

Browse files
authored
Add PME override for manual builds (#81355)
1 parent dc344ef commit 82b3a7b

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"
@@ -280,7 +284,7 @@ extends:
280284
zipSources: false
281285
feedSource: https://dnceng.pkgs.visualstudio.com/_packaging/MicroBuildToolset/nuget/v3/index.json
282286
# Set ConnectedPMEServiceName if the build is a CI build, otherwise it is not needed
283-
${{ if eq(variables['Build.Reason'], 'IndividualCI') }}:
287+
${{ if or(eq(variables['Build.Reason'], 'IndividualCI'), parameters.PMEOverride) }}:
284288
ConnectedPMEServiceName: 248d384a-b39b-46e3-8ad5-c2c210d5e7ca
285289
condition: and(succeeded(), in('${{ parameters.SignType }}', 'test', 'real'))
286290

0 commit comments

Comments
 (0)