Index: Jenkinsfile
===================================================================
--- Jenkinsfile	(revision 38c0fe51443f6890fb324c7ef08793dd9642d39b)
+++ Jenkinsfile	(revision 7a230fdbf30cfbe8ae7776e8ce6798236d946161)
@@ -1,3 +1,5 @@
 #!groovy
+
+import groovy.transform.Field
 
 //===========================================================================================================
@@ -165,6 +167,6 @@
 }
 
-CompileGroup = new PlotGroup('Compilation', 'seconds', true)
-ConcurrencyGroup = new PlotGroup('Concurrency', 'nanoseconds', false)
+@Field PlotGroup CompileGroup = new PlotGroup('Compilation', 'seconds', true)
+@Field PlotGroup ConcurrencyGroup = new PlotGroup('Concurrency', 'nanoseconds', false)
 
 def publish() {
@@ -326,7 +328,7 @@
 		this.IsSandbox          = (branch == "jenkins-sandbox")
 		this.RunAllTests        = param.RunAllTests
-		this.RunBenchmark       = param.RunBenchmark || this.IsSandbox
+		this.RunBenchmark       = param.RunBenchmark
 		this.BuildDocumentation = param.BuildDocumentation
-		this.Publish            = param.Publish || this.IsSandbox
+		this.Publish            = param.Publish
 		this.Silent             = param.Silent
 
