Index: Jenkinsfile
===================================================================
--- Jenkinsfile	(revision f61958dbe5ca3167d9f3323cc73a8b12c6588a5b)
+++ Jenkinsfile	(revision d3d0069f06da117eb110b9e23afa05f37d688d1c)
@@ -12,36 +12,39 @@
 node ('master'){
 	//configure the conpilation
-	sh 'make maintainer-clean > /dev/null'
-	sh 'CC=gcc-4.9 CXX=g++-4.9 ./configure > /dev/null'
-	sh 'make -j 8'
-	step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: 'tdelisle@uwaterloo.ca', sendToIndividuals: false])
-	error 'testing'
+	try {
+		sh 'make maintainer-clean > /dev/null'
+		sh 'CC=gcc-4.9 CXX=g++-4.9 ./configure'
+		sh 'make -j 8'
+		echo "Success"
+	} catch (Exception e) {
+		echo "Failed"
+	}
 }
 
-stage 'Notify'
-node {
-	//Since tokenizer doesn't work, figure stuff out from the environnement variables and command line
-	//Configurations for email format
-	def project_name = (env.JOB_NAME =~ /(.+)\/.+/)[0][1].toLowerCase()
-
-	def email_subject = "[${project_name} git] - branch ${env.BRANCH_NAME} - Build # ${env.BUILD_NUMBER} - BUILD_STATUS!"
-	def email_body = """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 ${env.BRANCH_NAME} 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 ${env.BUILD_URL} to view the results."""
-
-	def email_to = 'tdelisle@uwaterloo.ca'
-
-	//send email notification
-	emailext body: email_body, subject: email_subject, to: email_to, attachLog: true
-}
+// stage 'Notify'
+// node {
+// 	//Since tokenizer doesn't work, figure stuff out from the environnement variables and command line
+// 	//Configurations for email format
+// 	def project_name = (env.JOB_NAME =~ /(.+)\/.+/)[0][1].toLowerCase()
+//
+// 	def email_subject = "[${project_name} git] - branch ${env.BRANCH_NAME} - Build # ${env.BUILD_NUMBER} - BUILD_STATUS!"
+// 	def email_body = """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 ${env.BRANCH_NAME} 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 ${env.BUILD_URL} to view the results."""
+//
+// 	def email_to = 'tdelisle@uwaterloo.ca'
+//
+// 	//send email notification
+// 	emailext body: email_body, subject: email_subject, to: email_to, attachLog: true
+// }
