From: Hyeongseok Oh Date: Wed, 29 Mar 2017 23:31:52 +0000 (+0900) Subject: [Linux/x86] Change non-PR Linux/x86 build CI job to daily job (dotnet/coreclr#10551) X-Git-Tag: submit/tizen/20210909.063632~11030^2~7500 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d7ccade80c0ff82f75847795645a270005a4a3b3;p=platform%2Fupstream%2Fdotnet%2Fruntime.git [Linux/x86] Change non-PR Linux/x86 build CI job to daily job (dotnet/coreclr#10551) 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. Commit migrated from https://github.com/dotnet/coreclr/commit/103ba6415fb0d768a9bbb3cc8cb342b84dd1f5d5 --- diff --git a/src/coreclr/netci.groovy b/src/coreclr/netci.groovy index 0c6d139..396893f 100755 --- a/src/coreclr/netci.groovy +++ b/src/coreclr/netci.groovy @@ -364,7 +364,10 @@ def static addNonPRTriggers(def job, def branch, def isPR, def architecture, def 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