Index: Jenkins/FullBuild
===================================================================
--- Jenkins/FullBuild	(revision a3e1f8fb5ebff02919d4c7e0b994c94b0223e84f)
+++ Jenkins/FullBuild	(revision b94206bff36d3d9975c3b7cd8b0533281f29b3e2)
@@ -36,13 +36,30 @@
 			wrap([$class: 'TimestamperBuildWrapper']) {
 
-				build job: 'Cforall/master', 					\
-					parameters: [						\
-						[$class: 'BooleanParameterValue', 		\
-						  name: 'isFullBuild', 				\
-						  value: true], 					\
-						[$class: 'StringParameterValue', 		\
-						  name: 'buildArchitecture', 			\
-						  value: '64-bit']				\
-					]
+				stage 'Build'
+
+					parallel (
+						{ node ('master') {
+							build job: 'Cforall/master', 					\
+								parameters: [						\
+									[$class: 'BooleanParameterValue', 		\
+									  name: 'isFullBuild', 				\
+									  value: true], 					\
+									[$class: 'StringParameterValue', 		\
+									  name: 'buildArchitecture', 			\
+									  value: '64-bit']				\
+								]
+						}},
+						{ node ('master') {
+							build job: 'Cforall/master', 					\
+								parameters: [						\
+									[$class: 'BooleanParameterValue', 		\
+									  name: 'isFullBuild', 				\
+									  value: true], 					\
+									[$class: 'StringParameterValue', 		\
+									  name: 'buildArchitecture', 			\
+									  value: '32-bit']				\
+								]
+						}}
+					)
 
 				//Push latest changes to do-lang repo
Index: Jenkinsfile
===================================================================
--- Jenkinsfile	(revision a3e1f8fb5ebff02919d4c7e0b994c94b0223e84f)
+++ Jenkinsfile	(revision b94206bff36d3d9975c3b7cd8b0533281f29b3e2)
@@ -204,6 +204,9 @@
 
 	finally {
+		echo 'Build Completed'
+
 		//Send email with final results if this is not a full build
 		if( !bIsFullBuild ) {
+			echo 'Notifying users of result'
 			email(currentBuild.result, log_needed)
 		}
@@ -219,11 +222,4 @@
 //Routine responsible of sending the email notification once the build is completed
 //===========================================================================================================
-def notify_result(boolean bIsFullBuild, Exception err, String status, boolean log) {
-	echo 'Build completed, sending result notification'
-	if(bIsFullBuild)	 {
-		email(status, log)
-	}
-}
-
 //Standard build email notification
 def email(String status, boolean log) {
