jjb: lava: cleanup: clarify comments and fix coding style
authorFrancis Deslauriers <francis.deslauriers@efficios.com>
Fri, 22 Dec 2017 16:56:28 +0000 (11:56 -0500)
committerFrancis Deslauriers <francis.deslauriers@efficios.com>
Tue, 9 Jan 2018 04:16:26 +0000 (23:16 -0500)
Signed-off-by: Francis Deslauriers <francis.deslauriers@efficios.com>
scripts/system-tests/system-trigger.groovy

index 394227cb9645d51337b88aea9ad32a9bc980b967..cc1e1ee9ba51ff2f33c4ded16bc335fefeb51bf1 100644 (file)
@@ -180,7 +180,9 @@ class RunConfiguration {
   }
 
   String toString() {
-    return "${this.linuxBranch}:{${this.linuxTagId}}, ${this.lttngBranch}:{${this.lttngModulesCommitId}, ${this.lttngToolsCommitId}, ${this.lttngUstCommitId}}"
+    return "${this.linuxBranch}:{${this.linuxTagId}}, ${this.lttngBranch}" +
+      ":{${this.lttngModulesCommitId}, ${this.lttngToolsCommitId}," +
+      "${this.lttngUstCommitId}}"
   }
 }
 
@@ -376,8 +378,8 @@ linuxLastTagIds.each { linuxTag ->
   }
 }
 
-// For each top of branch commits that were not seen before, schedule one job
-// for each lttng/linux tracked configurations
+// For each top of branch commits of LTTng-Tools that were not seen before,
+// schedule one job for each lttng/linux tracked configurations
 toolsHeadCommits.each { toolsHead ->
   if (!oldToolsHeadCommits.contains(toolsHead.value)) {
     linuxLastTagIds.each { linuxTag ->
@@ -394,8 +396,8 @@ toolsHeadCommits.each { toolsHead ->
   }
 }
 
-// For each top of branch commits that were not seen before, schedule one job
-// for each lttng/linux tracked configurations
+// For each top of branch commits of LTTng-Modules that were not seen before,
+// schedule one job for each lttng/linux tracked configurations
 modulesHeadCommits.each { modulesHead ->
   if (!oldModulesHeadCommits.contains(modulesHead.value)) {
     linuxLastTagIds.each { linuxTag ->
@@ -412,8 +414,8 @@ modulesHeadCommits.each { modulesHead ->
   }
 }
 
-// For each top of branch commits that were not seen before, schedule one job
-// for each lttng/linux tracked configurations
+// For each top of branch commits of LTTng-UST that were not seen before,
+// schedule one job for each lttng/linux tracked configurations
 ustHeadCommits.each { ustHead ->
   if (!oldUstHeadCommits.contains(ustHead.value)) {
     linuxLastTagIds.each { linuxTag ->
@@ -430,7 +432,8 @@ ustHeadCommits.each { ustHead ->
   }
 }
 
-// Save the tag and commit IDs scheduled in the past and during this run to the workspace
+// Save the tag and commit IDs scheduled in the past and during this run to the
+// workspace
 saveCurrentIdsToWorkspace(newOldLinuxTags, linuxOnDiskPath)
 saveCurrentIdsToWorkspace(newOldToolsHeadCommits, toolsOnDiskPath)
 saveCurrentIdsToWorkspace(newOldModulesHeadCommits, modulesOnDiskPath)
This page took 0.024254 seconds and 4 git commands to generate.