Currently, only checked runs can be triggered for x86. This adds a trigger
for release runs as well.
Commit migrated from https://github.com/dotnet/coreclr/commit/
ee9a8486528f40fbf571b9ca0c6dd3c02a17862e
if (configuration == 'Checked') {
Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build and Test")
}
+ else if (configuration == 'Release') {
+ Utilities.addGithubPRTriggerForBranch(job, branch, "${os} ${architecture} ${configuration} Build and Test",
+ "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}.*")
+ }
break
case 'pri1':
if (configuration == 'Release') {