VOL-5155 - triage failure in periodic-voltha-test-bbsim-2.12

jjb/voltha-e2e/voltha-2.12.yaml
-------------------------------
  o Cosmetic pipeline change to try and force job regeneration.

jjb/pipeline/voltha/voltha-2.12/bbsim-tests.groovy
--------------------------------------------------
  o Inline a hardcoded version string so we can easily check
    for changes in jenkins UI or logfile output.

Change-Id: I95770b2c94a529397a7eb4c9cb4bd866167c2b15
diff --git a/jjb/pipeline/voltha/voltha-2.12/bbsim-tests.groovy b/jjb/pipeline/voltha/voltha-2.12/bbsim-tests.groovy
index 5d97b82..b411109 100644
--- a/jjb/pipeline/voltha/voltha-2.12/bbsim-tests.groovy
+++ b/jjb/pipeline/voltha/voltha-2.12/bbsim-tests.groovy
@@ -40,10 +40,13 @@
 
 // -----------------------------------------------------------------------
 // Intent: Due to lack of a reliable stack trace, construct a literal.
-//         Jenkins will re-write the call stack for serialization.
+//         Jenkins will re-write the call stack for serialization.S
 // -----------------------------------------------------------------------
-String getIam(String func) {
+// Note: Hardcoded version string used to visualize changes in jenkins UI
+// -----------------------------------------------------------------------
+tring getIam(String func, Boolean verbose=True) {
     String branchName = branchName()
+    String version = '4f87de8f31d588d8277dc5ea6fbb69e714c66079'
     String src = [
         'ci-management',
         'jjb',
@@ -53,7 +56,7 @@
         'bbsim-tests.groovy'
     ].join('/')
 
-    String name = [src, func].join('::')
+    String name = [src, version, func].join('::')
     return(name)
 }