Index: Jenkinsfile
===================================================================
--- Jenkinsfile	(revision 23a14d86bd78d0e4b310ced499e4d6d26d314f13)
+++ Jenkinsfile	(revision 7aebc62fa460b0e00e5812f9b1cf6e77bdc2c9b9)
@@ -1,36 +1,23 @@
 
-//Configurations for email format
-def email_subject_template = '[$PROJECT_NAME git] - branch $GIT_BRANCH - Build # $BUILD_NUMBER - $BUILD_STATUS!'
-def email_body_template = '''This is an automated email from the Jenkins build machine. It was
-generated because of a git hooks/post-receive script following
-a ref change was pushed to the repository containing
-the project "UNNAMED PROJECT".
 
-The branch $GIT_BRANCH has been updated
-       via  $GIT_COMMIT (commit)
-      from  $GIT_PREVIOUS_COMMIT (commit)
-
-Those revisions listed above that are new to this repository have
-not appeared on any other notification email; so we list those
-revisions in full, below.
-
-Check console output at $BUILD_URL to view the results.'''
-
-node ('master'){
-	//clean the repo and checkout the source code
-	stage 'Stage Checkout'
+//clean the repo and checkout the source code
+stage 'Checkout'
+node {
 	checkout scm
 	sh 'git clean -f'
+}
 
+
+stage 'Build'
+node ('master'){
 	//configure the conpilation
-	stage 'Stage Build'
-	sh 'dfjgh'
 	sh 'make maintainer-clean'
 	sh 'CC=gcc-4.9 CXX=g++-4.9 ./configure'
 	sh 'make -j 8'
+	sh 'blarg'
+}
 
-
-	stage 'Stage Notify'
-
+stage 'Notify'
+node {
 	//Since tokenizer doesn't work, figure stuff out from the environnement variables and command line
 	//Configurations for email format
@@ -57,3 +44,3 @@
 	//send email notification
 	emailext body: email_body, subject: email_subject, to: email_to, attachLog: true
- }
+}
