Index: Jenkinsfile
===================================================================
--- Jenkinsfile	(revision 9a9009239aa1704838d00d2dc1ac54ef0a5fd2f9)
+++ Jenkinsfile	(revision 985b6245b5f32f78740a4e3b173e26ac0f687e1a)
@@ -305,13 +305,13 @@
 				this.Compiler = new CC_Desc('gcc-7', 'g++-7', 'gcc-7', '-flto=auto')
 			break
-			case 'gcc-6':
-				this.Compiler = new CC_Desc('gcc-6', 'g++-6', 'gcc-6', '-flto=auto')
-			break
-			case 'gcc-5':
-				this.Compiler = new CC_Desc('gcc-5', 'g++-5', 'gcc-5', '-flto=auto')
-			break
-			case 'gcc-4.9':
-				this.Compiler = new CC_Desc('gcc-4.9', 'g++-4.9', 'gcc-4.9', '-flto=auto')
-			break
+			// case 'gcc-6':
+			//	this.Compiler = new CC_Desc('gcc-6', 'g++-6', 'gcc-6', '-flto=auto')
+			// break
+			// case 'gcc-5':
+			//	this.Compiler = new CC_Desc('gcc-5', 'g++-5', 'gcc-5', '-flto=auto')
+			// break
+			// case 'gcc-4.9':
+			//	this.Compiler = new CC_Desc('gcc-4.9', 'g++-4.9', 'gcc-4.9', '-flto=auto')
+			// break
 			case 'clang':
 				this.Compiler = new CC_Desc('clang', 'clang++-10', 'gcc-10', '-flto=thin -flto-jobs=0')
@@ -359,52 +359,54 @@
 def prepare_build() {
 	// prepare the properties
-	properties ([ 													\
-		buildDiscarder(logRotator(										\
-			artifactDaysToKeepStr: '',									\
-			artifactNumToKeepStr: '',									\
-			daysToKeepStr: '730',										\
-			numToKeepStr: '1000'										\
-		)),														\
-		[$class: 'ParametersDefinitionProperty', 								\
-			parameterDefinitions: [ 									\
-				[$class: 'ChoiceParameterDefinition',						\
-					description: 'Which compiler to use',					\
-					name: 'Compiler',									\
-					choices: 'gcc-11\ngcc-10\ngcc-9\ngcc-8\ngcc-7\ngcc-6\ngcc-5\ngcc-4.9\nclang',	\
-					defaultValue: 'gcc-8',								\
-				],												\
-				[$class: 'ChoiceParameterDefinition',						\
-					description: 'The target architecture',					\
-					name: 'Architecture',								\
-					choices: 'x64\nx86',								\
-					defaultValue: 'x64',								\
-				],												\
-				[$class: 'BooleanParameterDefinition',  						\
+	properties ([ 										\
+		buildDiscarder(logRotator(							\
+			artifactDaysToKeepStr: '',						\
+			artifactNumToKeepStr: '',						\
+			daysToKeepStr: '730',							\
+			numToKeepStr: '1000'							\
+		)),										\
+		[$class: 'ParametersDefinitionProperty', 					\
+			parameterDefinitions: [ 						\
+				[$class: 'ChoiceParameterDefinition',				\
+					description: 'Which compiler to use',			\
+					name: 'Compiler',					\
+					choices: 'gcc-11\ngcc-10\ngcc-9\ngcc-8\ngcc-7\nclang',	\
+					defaultValue: 'gcc-9',					\
+				],								\
+				[$class: 'ChoiceParameterDefinition',				\
+					description: 'The target architecture',			\
+					name: 'Architecture',					\
+					choices: 'x64\nx86',					\
+					defaultValue: 'x64',					\
+				],								\
+				[$class: 'BooleanParameterDefinition',  			\
 					description: 'If false, the test suite is only ran in debug', 	\
-					name: 'RunAllTests', 								\
-					defaultValue: false,  								\
-				], 												\
-				[$class: 'BooleanParameterDefinition',  						\
-					description: 'If true, jenkins also runs benchmarks', 		\
-					name: 'RunBenchmark', 								\
-					defaultValue: false,  								\
-				], 												\
-				[$class: 'BooleanParameterDefinition',  						\
-					description: 'If true, jenkins also builds documentation', 		\
-					name: 'BuildDocumentation', 							\
-					defaultValue: true,  								\
-				],												\
-				[$class: 'BooleanParameterDefinition',  						\
-					description: 'If true, jenkins also publishes results', 		\
-					name: 'Publish', 									\
-					defaultValue: false,  								\
-				],												\
-				[$class: 'BooleanParameterDefinition',  						\
-					description: 'If true, jenkins will not send emails', 		\
-					name: 'Silent', 									\
-					defaultValue: false,  								\
-				],												\
+					name: 'RunAllTests', 					\
+					defaultValue: false,  					\
+				], 								\
+				[$class: 'BooleanParameterDefinition',  			\
+					description: 'If true, jenkins also runs benchmarks', 	\
+					name: 'RunBenchmark', 					\
+					defaultValue: false,  					\
+				], 								\
+				[$class: 'BooleanParameterDefinition',  			\
+					description: 'If true, jenkins also builds documentation', \
+					name: 'BuildDocumentation', 				\
+					defaultValue: true,  					\
+				],								\
+				[$class: 'BooleanParameterDefinition',  			\
+					description: 'If true, jenkins also publishes results', \
+					name: 'Publish', 					\
+					defaultValue: false,  					\
+				],								\
+				[$class: 'BooleanParameterDefinition',  			\
+					description: 'If true, jenkins will not send emails', 	\
+					name: 'Silent', 					\
+					defaultValue: false,  					\
+				],								\
 			],
 		]])
+					// choices: 'gcc-11\ngcc-10\ngcc-9\ngcc-8\ngcc-7\ngcc-6\ngcc-5\ngcc-4.9\nclang',
+					// defaultValue: 'gcc-8',
 
 	// It's unfortunate but it looks like we need to checkout the entire repo just to get
