Index: Jenkins/FullBuild
===================================================================
--- Jenkins/FullBuild	(revision 98d4df99d1a62214a4467c21f220c266138e9826)
+++ Jenkins/FullBuild	(revision 1b3eef86fda8a5600ee642bc6a6d7b210f660878)
@@ -17,10 +17,10 @@
 
 				parallel (
-					gcc_6_x64: { trigger_build( 'gcc-6',   'x64', true  ) },
-					gcc_6_x86: { trigger_build( 'gcc-6',   'x86', true  ) },
-					gcc_5_x64: { trigger_build( 'gcc-5',   'x64', false ) },
-					gcc_5_x86: { trigger_build( 'gcc-5',   'x86', false ) },
-					clang_x64: { trigger_build( 'clang',   'x64', false ) },
-					clang_x86: { trigger_build( 'clang',   'x86', false ) },
+					gcc_6_x64: { trigger_build( 'gcc-6',   'x64' ) },
+					gcc_6_x86: { trigger_build( 'gcc-6',   'x86' ) },
+					gcc_5_x64: { trigger_build( 'gcc-5',   'x64' ) },
+					gcc_5_x86: { trigger_build( 'gcc-5',   'x86' ) },
+					clang_x64: { trigger_build( 'clang',   'x64' ) },
+					clang_x86: { trigger_build( 'clang',   'x86' ) },
 				)
 			}
@@ -76,5 +76,5 @@
 			[$class: 'BooleanParameterValue', 		\
 			  name: 'Publish', 				\
-			  value: publish], 				\
+			  value: true], 				\
 			[$class: 'BooleanParameterValue', 		\
 			  name: 'Silent', 				\
Index: Jenkinsfile
===================================================================
--- Jenkinsfile	(revision 98d4df99d1a62214a4467c21f220c266138e9826)
+++ Jenkinsfile	(revision 1b3eef86fda8a5600ee642bc6a6d7b210f660878)
@@ -170,5 +170,5 @@
 	build_stage('Publish') {
 
-		if( !Settings.RunBenchmark ) { echo 'No results to publish!!!' }
+		if( Settings.Publish && !Settings.RunBenchmark ) { echo 'No results to publish!!!' }
 
 		def groupCompile = new PlotGroup('Compilation', 'seconds', true)
@@ -433,7 +433,11 @@
 }
 
-def do_plot(boolean silent, String file, PlotGroup group, String title) {
-
-	def series = silent ? [] : [[
+def do_plot(boolean new_data, String file, PlotGroup group, String title) {
+
+	if(new_data) {
+		echo "Publishing new data"
+	}
+
+	def series = new_data ? [] : [[
 				file: "${file}.csv",
 				exclusionValues: '',
