Index: Jenkins/tools.groovy
===================================================================
--- Jenkins/tools.groovy	(revision 9c4ad6765135d1f60bbe16f509310ae13a291780)
+++ Jenkins/tools.groovy	(revision b66d14aaeea72bcdae48b4628ad29848b32691eb)
@@ -6,12 +6,8 @@
 import org.jenkinsci.plugins.pipeline.modeldefinition.Utils
 
-// Global for the stage name
-StageName = ''
-
 // wrapper around stage declaretion to be more verbose
 // and allow showing as skipped in the UI
 def BuildStage(String name, boolean run, Closure block ) {
-	StageName = name
-	echo " -------- ${StageName} -------- "
+	echo " -------- ${name} -------- "
 	if(run) {
 		stage(name, block)
