This commit change non-PR Linux/x86 build CI job to daily job.
This job only perform build process now,
but it will be perform Linux/x86 CoreCLR unittest later.
And build result could be used for Linux/x86 CoreFX unittest.
case 'x64':
case 'x86':
case 'x86compatjit':
- if (isFlowJob || os == 'Windows_NT' || !(os in Constants.crossList)) {
+ if (architecture == 'x86' && os == 'Ubuntu') {
+ Utilities.addPeriodicTrigger(job, '@daily')
+ }
+ else if (isFlowJob || os == 'Windows_NT' || !(os in Constants.crossList)) {
Utilities.addGithubPushTrigger(job)
}
break