From d7ccade80c0ff82f75847795645a270005a4a3b3 Mon Sep 17 00:00:00 2001 From: Hyeongseok Oh Date: Thu, 30 Mar 2017 08:31:52 +0900 Subject: [PATCH] [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 --- src/coreclr/netci.groovy | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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 -- 2.7.4