X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=scripts%2Fsystem-tests%2Fsystem-trigger.groovy;h=f59e5708451994fb9278be25bade0378e2a50627;hb=c0f6d9ca04a6c0bfa70a80b3ecfa32991fd13147;hp=a4e4165b32daf63410bd9ae1f54b11cf1cd564c2;hpb=4e9d92412f9615a419e17d6c7da302727c774175;p=lttng-ci.git diff --git a/scripts/system-tests/system-trigger.groovy b/scripts/system-tests/system-trigger.groovy index a4e4165..f59e570 100644 --- a/scripts/system-tests/system-trigger.groovy +++ b/scripts/system-tests/system-trigger.groovy @@ -301,17 +301,16 @@ final String linuxRepo = "git://git.kernel.org/pub/scm/linux/kernel/git/stable/l final String pastJobsPath = build.getEnvironment(listener).get('WORKSPACE') + "/pastjobs"; def recentLttngBranchesOfInterest = ['master', - 'stable-2.12', - 'stable-2.11', - 'stable-2.10', - 'stable-2.9'] + 'stable-2.13', + 'stable-2.12'] def recentLinuxBranchesOfInterest = ['master', - 'linux-5.1.y', - 'linux-5.0.y', + 'linux-5.16.y', + 'linux-5.15.y', + 'linux-5.10.y', + 'linux-5.4.y', 'linux-4.19.y', 'linux-4.14.y', - 'linux-4.9.y', - 'linux-4.4.y'] + 'linux-4.9.y'] def legacyLttngBranchesOfInterest = [] def legacyLinuxBranchesOfInterest = [] @@ -369,8 +368,6 @@ if (triggerJobName.contains("vm_tests")) { } } else if (triggerJobName.contains("baremetal_tests")) { jobType = 'baremetal_tests'; -} else if (triggerJobName.contains("baremetal_benchmarks")) { - jobType = 'baremetal_benchmarks'; } // Hashmap containing all the jobs, their configuration (commit id, etc. )and @@ -385,7 +382,7 @@ configurationOfInterest.each { lttngBr, linuxBr -> } //Add canary job -def jobNameCanary = jobType + "_canary"; +def jobNameCanary = jobType + "_kcanary_lcanary"; currentJobs[jobNameCanary] = [:]; currentJobs[jobNameCanary]['config'] = [:]; currentJobs[jobNameCanary]['config']['linuxBranch'] = 'v4.4.194'; @@ -408,7 +405,7 @@ def ongoingJobs = 0; currentJobs.each { jobName, jobInfo -> // If the job ran in the past, we check if the IDs changed since. // Fetch past results only if the job is not of type canary. - if (!jobName.contains('_canary') && pastJobs.containsKey(jobName) && + if (!jobName.contains('_kcanary_lcanary') && pastJobs.containsKey(jobName) && build.getBuildVariables().get('FORCE_JOB_RUN') == 'false') { pastJob = pastJobs[jobName];