Index: Jenkins/FullBuild
===================================================================
--- Jenkins/FullBuild	(revision d3af50525d39eb9ac13fe562fd833cb2158362d5)
+++ Jenkins/FullBuild	(revision ca8c91ce061adc1907a354dacabb789d39f641ba)
@@ -20,9 +20,10 @@
 					gcc_08_x86_new: { trigger_build( 'gcc-10',  'x86', false ) },
 					gcc_07_x86_new: { trigger_build( 'gcc-9',   'x86', false ) },
+					gcc_11_x64_new: { trigger_build( 'gcc-11',  'x64', false ) },
 					gcc_10_x64_new: { trigger_build( 'gcc-10',  'x64', false ) },
 					gcc_09_x64_new: { trigger_build( 'gcc-9',   'x64', false ) },
 					gcc_08_x64_new: { trigger_build( 'gcc-8',   'x64', false ) },
 					gcc_07_x64_new: { trigger_build( 'gcc-7',   'x64', false ) },
-					gcc_06_x64_new: { trigger_build( 'gcc-6',   'x64', false ) },
+					// gcc_06_x64_new: { trigger_build( 'gcc-6',   'x64', false ) },
 					clang_x64_new:  { trigger_build( 'clang',   'x64', true  ) },
 				)
@@ -41,6 +42,6 @@
 	}
 
-	//If an exception is caught we need to change the status and remember to
-	//attach the build log to the email
+	// If an exception is caught we need to change the status and remember to
+	// attach the build log to the email
 	catch (Exception caughtError) {
 		echo('error caught')
@@ -73,5 +74,5 @@
 	// Run the build
 	// Don't propagate, it doesn't play nice with our email setup
-	def result = build job: 'Cforall/master', 		\
+	def result = build job: 'Cforall/master', 			\
 		parameters: [						\
 			[$class: 'StringParameterValue', 		\
@@ -83,21 +84,21 @@
 			[$class: 'BooleanParameterValue', 		\
 			  name: 'NewAST', 				\
-			  value: true], 					\
+			  value: true], 				\
 			[$class: 'BooleanParameterValue', 		\
 			  name: 'RunAllTests', 				\
-			  value: true], 					\
+			  value: true], 				\
 			[$class: 'BooleanParameterValue', 		\
 			  name: 'RunBenchmark', 			\
-			  value: true], 					\
+			  value: true], 				\
 			[$class: 'BooleanParameterValue', 		\
-			  name: 'BuildDocumentation', 		\
+			  name: 'BuildDocumentation', 			\
 			  value: doc], 					\
 			[$class: 'BooleanParameterValue', 		\
 			  name: 'Publish', 				\
-			  value: true], 					\
+			  value: true], 				\
 			[$class: 'BooleanParameterValue', 		\
 			  name: 'Silent', 				\
-			  value: true], 					\
-		],								\
+			  value: true], 				\
+		],							\
 		propagate: false
 
@@ -111,9 +112,9 @@
 
 def trigger_dist(String commitId, String buildNum) {
-	def result = build job: 'Cforall_Distribute_Ref',	\
+	def result = build job: 'Cforall_Distribute_Ref',		\
 		parameters: [						\
 			string(name: 'GitRef', value: commitId),	\
-			string(name: 'Build' , value: buildNum)	\
-		],								\
+			string(name: 'Build' , value: buildNum)		\
+		],							\
 		propagate: false
 
