Add kernel 3.18.y only for vm testing.
authorJonathan Rajotte <jonathan.rajotte-julien@efficios.com>
Wed, 22 May 2019 18:32:00 +0000 (14:32 -0400)
committerJonathan Rajotte <jonathan.rajotte-julien@efficios.com>
Wed, 22 May 2019 18:34:10 +0000 (14:34 -0400)
3.18.y is broken for baremetal since the igb driver segfault at boot.

3.18 is EOL but used in embedded. Do a best effort on vm only.

Signed-off-by: Jonathan Rajotte <jonathan.rajotte-julien@efficios.com>
jobs/system-tests.yaml
scripts/system-tests/system-trigger.groovy

index 96aeea2a6bae9394e44afb6029f8875e3b291389..13f9919f3c04416aca5f882bed6fc3f10d64fb1a 100644 (file)
       - 'vm_tests_k{kversion}_l{lttngversion}':
       - 'baremetal_tests_k{kversion}_l{lttngversion}':
       - 'baremetal_benchmarks_k{kversion}_l{lttngversion}':
+- project:
+    name: system-tests-vm-only
+    kversion:
+      - linux-3.18.y
+    lttngversion:
+      - master
+      - stable-2.9
+      - stable-2.10
+    jobs:
+      - 'vm_tests_k{kversion}_l{lttngversion}'
 
 - project:
     name: system-tests-canary
index a091a7888e55f30f349dc75711581999bd3c7d39..a4f2a514220f47ff1c3498b8bc21196e8b0edbf5 100644 (file)
@@ -306,6 +306,8 @@ def recentLinuxBranchesOfInterest = ['master', 'linux-4.19.y', 'linux-4.14.y', '
 def legacyLttngBranchesOfInterest = ['master', 'stable-2.10', 'stable-2.9', 'stable-2.7']
 def legacyLinuxBranchesOfInterest = ['linux-4.4.y']
 
+def vmLinuxBranchesOfInterest = ['linux-3.18.y']
+
 // Generate configurations of interest.
 def configurationOfInterest = [] as Set
 
@@ -350,6 +352,11 @@ def CraftConfig = { linuxBr, lttngBr ->
 triggerJobName = build.project.getFullDisplayName();
 if (triggerJobName.contains("vm_tests")) {
   jobType = 'vm_tests';
+  recentLttngBranchesOfInterest.each { lttngBranch ->
+    vmLinuxBranchesOfInterest.each { linuxBranch ->
+      configurationOfInterest.add([lttngBranch, linuxBranch])
+    }
+  }
 } else if (triggerJobName.contains("baremetal_tests")) {
   jobType = 'baremetal_tests';
 } else if (triggerJobName.contains("baremetal_benchmarks")) {
This page took 0.024432 seconds and 4 git commands to generate.