Index: Jenkins/FullBuild
===================================================================
--- Jenkins/FullBuild	(revision ef1d025d1b14c99e152c1343b694fc21441cc013)
+++ Jenkins/FullBuild	(revision e9ea53dc47cd6820ba651b21e2df294d06d3c121)
@@ -32,4 +32,8 @@
 			stage('Package') {
 				trigger_dist( commitId, currentBuild.number.toString() )
+			}
+
+			stage('Promote') {
+				trigger_prom()
 			}
 		}
@@ -123,4 +127,15 @@
 }
 
+def trigger_prom() {
+	def result = build job: 'Cforall_Promote_Ref', propagate: false
+
+	echo(result.result)
+
+	if(result.result != 'SUCCESS') {
+		sh("wget -q -O - https://cforall.uwaterloo.ca/jenkins/job/Cforall_Promote_Ref/${result.number}/consoleText")
+		error(result.result)
+	}
+}
+
 //===========================================================================================================
 //Routine responsible of sending the email notification once the build is completed
