Index: Jenkins/FullBuild
===================================================================
--- Jenkins/FullBuild	(revision b3e972935f6f7771e50f45a552aaae0f45c2f7e7)
+++ Jenkins/FullBuild	(revision 8fa3c7e6fc91def126fa5c55bb2210be284e85cf)
@@ -20,10 +20,12 @@
 
 					parallel (
-						x64: {
-							trigger_build('64-bit')
-						},
-						x32: {
-							trigger_build('32-bit')
-						}
+						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' ) },
+						gcc_4_x64: { trigger_build( 'gcc-4', 'x64' ) },
+						gcc_4_x86: { trigger_build( 'gcc-4', 'x86' ) },
+						clang_x64: { trigger_build( 'clang', 'x64' ) },
+						clang_x86: { trigger_build( 'clang', 'x86' ) },
 					)
 
@@ -60,13 +62,28 @@
 //===========================================================================================================
 
-def trigger_build(String arch) {
+def trigger_build(String cc, String arch) {
 	def result = build job: 'Cforall/master', 		\
 		parameters: [						\
+			[$class: 'StringParameterValue', 		\
+			  name: 'pCompiler', 				\
+			  value: cc],					\
+			[$class: 'StringParameterValue', 		\
+			  name: 'pArchitecture', 			\
+			  value: arch],					\
 			[$class: 'BooleanParameterValue', 		\
-			  name: 'isFullBuild', 				\
+			  name: 'pRunAllTests', 			\
 			  value: true], 					\
-			[$class: 'StringParameterValue', 		\
-			  name: 'buildArchitecture', 			\
-			  value: arch]					\
+			[$class: 'BooleanParameterValue', 		\
+			  name: 'pRunBenchmark', 			\
+			  value: true], 					\
+			[$class: 'BooleanParameterValue', 		\
+			  name: 'pBuildDocumentation', 		\
+			  value: true], 					\
+			[$class: 'BooleanParameterValue', 		\
+			  name: 'pPublish', 				\
+			  value: true], 					\
+			[$class: 'BooleanParameterValue', 		\
+			  name: 'pSilent', 				\
+			  value: true], 					\
 		],								\
 		propagate: false
Index: Jenkinsfile
===================================================================
--- Jenkinsfile	(revision b3e972935f6f7771e50f45a552aaae0f45c2f7e7)
+++ Jenkinsfile	(revision 8fa3c7e6fc91def126fa5c55bb2210be284e85cf)
@@ -113,15 +113,15 @@
 					description: 'The target architecture',					\
 					name: 'pArchitecture',								\
-					choices: '64-bit\n32-bit',							\
-					defaultValue: '64-bit',								\
+					choices: 'x64\nx86',								\
+					defaultValue: 'x64',								\
 				],												\
 				[$class: 'BooleanParameterDefinition',  						\
 					description: 'If false, only the quick test suite is ran', 		\
-					name: 'pRunAllTests', 							\
+					name: 'pRunAllTests', 								\
 					defaultValue: false,  								\
 				], 												\
 				[$class: 'BooleanParameterDefinition',  						\
 					description: 'If true, jenkins also runs benchmarks', 		\
-					name: 'pRunBenchmark', 							\
+					name: 'pRunBenchmark', 								\
 					defaultValue: true,  								\
 				], 												\
@@ -219,8 +219,8 @@
 def architecture_from_params( arch ) {
 	switch( arch ) {
-		case '64-bit':
+		case 'x64':
 			return '--host=x86_64 CXXFLAGS="-m64" CFAFLAGS="-m64"'
 		break
-		case '32-bit':
+		case 'x86':
 			return '--host=i386   CXXFLAGS="-m32" CFAFLAGS="-m32"'
 		break
