Skip to content
Merged
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
6 changes: 5 additions & 1 deletion azure-pipelines-official.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ parameters:
type: boolean
default: true

- name: PMEOverride
type: boolean
default: false

schedules:
- cron: "0 8 23-29 * 0"
displayName: "Monthly smoke test"
Expand Down Expand Up @@ -270,7 +274,7 @@ extends:
zipSources: false
feedSource: https://dnceng.pkgs.visualstudio.com/_packaging/MicroBuildToolset/nuget/v3/index.json
# Set ConnectedPMEServiceName if the build is a CI build, otherwise it is not needed
${{ if eq(variables['Build.Reason'], 'IndividualCI') }}:
${{ if or(eq(variables['Build.Reason'], 'IndividualCI'), parameters.PMEOverride) }}:
ConnectedPMEServiceName: 248d384a-b39b-46e3-8ad5-c2c210d5e7ca
condition: and(succeeded(), in('${{ parameters.SignType }}', 'test', 'real'))

Expand Down
Loading