Index: Jenkins/FullBuild
===================================================================
--- Jenkins/FullBuild	(revision 18a141962523ef1358076b48b0b89a96cb1cd4f8)
+++ Jenkins/FullBuild	(revision ad5b73e4e493417a0f76cd897d7e6a78a7165fa8)
@@ -28,57 +28,57 @@
 // Main loop of the compilation
 //===========================================================================================================
+node ('master') {
+	try {
+		//Prevent the build from exceeding 30 minutes
+		timeout(60) {
 
-try {
-	//Prevent the build from exceeding 30 minutes
-	timeout(60) {
+			//Wrap build to add timestamp to command line
+			wrap([$class: 'TimestamperBuildWrapper']) {
 
-		//Wrap build to add timestamp to command line
-		wrap([$class: 'TimestamperBuildWrapper']) {
+				stage 'Build'
 
-			stage 'Build'
+					results = [null, null]
 
-				results = [null, null]
+					parallel (
+						x64: {
+							result[0] = build job: 'Cforall/master', 					\
+								parameters: [						\
+									[$class: 'BooleanParameterValue', 		\
+									  name: 'isFullBuild', 				\
+									  value: true], 					\
+									[$class: 'StringParameterValue', 		\
+									  name: 'buildArchitecture', 			\
+									  value: '64-bit']				\
+								]
+						},
+						x32:
+						 {
+							result[1] = build job: 'Cforall/master', 					\
+								parameters: [						\
+									[$class: 'BooleanParameterValue', 		\
+									  name: 'isFullBuild', 				\
+									  value: true], 					\
+									[$class: 'StringParameterValue', 		\
+									  name: 'buildArchitecture', 			\
+									  value: '32-bit']				\
+								]
+						}
+					)
 
-				parallel (
-					x64: {
-						result[0] = build job: 'Cforall/master', 					\
-							parameters: [						\
-								[$class: 'BooleanParameterValue', 		\
-								  name: 'isFullBuild', 				\
-								  value: true], 					\
-								[$class: 'StringParameterValue', 		\
-								  name: 'buildArchitecture', 			\
-								  value: '64-bit']				\
-							]
-					},
-					x32:
-					 {
-						result[1] = build job: 'Cforall/master', 					\
-							parameters: [						\
-								[$class: 'BooleanParameterValue', 		\
-								  name: 'isFullBuild', 				\
-								  value: true], 					\
-								[$class: 'StringParameterValue', 		\
-								  name: 'buildArchitecture', 			\
-								  value: '32-bit']				\
-							]
+					results.each { result ->
+						echo(result.result)
+						echo(result.absoluteUrl)
+
+						if (result.result != 'SUCCESS') {
+							echo( 'Build Succeded' )
+						}
 					}
-				)
 
-				results.each { result ->
-					echo(result.result)
-					echo(result.absoluteUrl)
-
-					if (result.result != 'SUCCESS') {
-						echo( 'Build Succeded' )
-					}
-				}
-
-			//Push latest changes to do-lang repo
-			push_build()
+				//Push latest changes to do-lang repo
+				push_build()
+			}
 		}
 	}
 }
-
 //If an exception is caught we need to change the status and remember to
 //attach the build log to the email
