}
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}}"
}
}
}
}
-// 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 ->
}
}
-// 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 ->
}
}
-// 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 ->
}
}
-// 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)