From: Francis Deslauriers Date: Wed, 10 Jan 2018 15:56:53 +0000 (-0500) Subject: jjb: lava: clarify logging statements in trigger jobs X-Git-Url: https://git.lttng.org./?a=commitdiff_plain;h=8f3754f357dce3b32137707f9b667035e0d3898e;p=lttng-ci.git jjb: lava: clarify logging statements in trigger jobs Signed-off-by: Francis Deslauriers --- diff --git a/scripts/system-tests/system-trigger.groovy b/scripts/system-tests/system-trigger.groovy index 559c314..08a0f14 100644 --- a/scripts/system-tests/system-trigger.groovy +++ b/scripts/system-tests/system-trigger.groovy @@ -459,7 +459,7 @@ if (triggerJobName.contains("vm_tests")) { } // Launch canary jobs. -println("Schedule canary jobs once a day") +println("\nSchedule canary jobs once a day:") canaryRunConfigs.each { config -> def jobName = jobType + '_canary'; def currBuild = LaunchJob(jobName, config); @@ -472,7 +472,7 @@ canaryRunConfigs.each { config -> // Launch regular jobs. if (runConfigs.size() > 0) { - println("Schedule jobs because of code changes."); + println("\nSchedule jobs triggered by code changes:"); runConfigs.each { config -> def jobName = CraftJobName(jobType, config); def currBuild = LaunchJob(jobName, config);