Index: Jenkins/FullBuild
===================================================================
--- Jenkins/FullBuild	(revision 620dd2b27df753a484d739bda4b2f47ade333486)
+++ Jenkins/FullBuild	(revision f408e1a4b32252bdcb6bfa747a748e6103fef057)
@@ -9,28 +9,25 @@
 
 	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 (
+					gcc_6_x64: { trigger_build( 'gcc-6',   'x64', true  ) },
+					gcc_6_x86: { trigger_build( 'gcc-6',   'x86', true  ) },
+					gcc_5_x64: { trigger_build( 'gcc-5',   'x64', false ) },
+					gcc_5_x86: { trigger_build( 'gcc-5',   'x86', false ) },
+					gcc_4_x64: { trigger_build( 'gcc-4.9', 'x64', false ) },
+					gcc_4_x86: { trigger_build( 'gcc-4.9', 'x86', false ) },
+					clang_x64: { trigger_build( 'clang',   'x64', false ) },
+					clang_x86: { trigger_build( 'clang',   'x86', false ) },
+				)
+			}
 
-					parallel (
-						gcc_6_x64: { trigger_build( 'gcc-6',   'x64', true  ) },
-						gcc_6_x86: { trigger_build( 'gcc-6',   'x86', true  ) },
-						gcc_5_x64: { trigger_build( 'gcc-5',   'x64', false ) },
-						gcc_5_x86: { trigger_build( 'gcc-5',   'x86', false ) },
-						gcc_4_x64: { trigger_build( 'gcc-4.9', 'x64', false ) },
-						gcc_4_x86: { trigger_build( 'gcc-4.9', 'x86', false ) },
-						clang_x64: { trigger_build( 'clang',   'x64', false ) },
-						clang_x86: { trigger_build( 'clang',   'x86', false ) },
-					)
-
-				//Push latest changes to do-lang repo
-				push_build()
-			}
+			//Push latest changes to do-lang repo
+			push_build()
 		}
 	}
@@ -99,5 +96,5 @@
 def push_build() {
 	//Don't use the build_stage function which outputs the compiler
-	stage 'Push'
+	stage('Push') {
 
 		status_prefix = 'Push'
@@ -122,4 +119,5 @@
 		//sh "GIT_SSH_COMMAND=\"ssh -v\" git push DoLang ${gitRefNewValue}:master"
 		echo('BUILD NOT PUSH SINCE DO-LANG SERVER WAS DOWN')
+	}
 }
 
Index: Jenkinsfile
===================================================================
--- Jenkinsfile	(revision 620dd2b27df753a484d739bda4b2f47ade333486)
+++ Jenkinsfile	(revision f408e1a4b32252bdcb6bfa747a748e6103fef057)
@@ -28,27 +28,23 @@
 		wrap([$class: 'TimestamperBuildWrapper']) {
 
-			//Prevent the build from exceeding 60 minutes
-			timeout(60) {
-
-				notify_server()
-
-				prepare_build()
-
-				checkout()
-
-				build()
-
-				test()
-
-				benchmark()
-
-				clean()
-
-				build_doc()
-
-				publish()
-
-				notify_server()
-			}
+			notify_server()
+
+			prepare_build()
+
+			checkout()
+
+			build()
+
+			test()
+
+			benchmark()
+
+			clean()
+
+			build_doc()
+
+			publish()
+
+			notify_server()
 		}
 	}
