Index: Jenkinsfile
===================================================================
--- Jenkinsfile	(revision 428515429b47c38a625c3edee0a633a4b7f2b19a)
+++ Jenkinsfile	(revision 31eed869a1d8f1421ca96915c73e8ba113abadf9)
@@ -1,3 +1,2 @@
-
 //===========================================================================================================
 // Main compilation routine
@@ -74,8 +73,21 @@
 	currentBuild.result = "SUCCESS"
 
+	//Properties sent by the git-hooks (ref name, latest commit hash, previous commit hash)
+	properties( [[$class: 'ParametersDefinitionProperty', parameterDefinitions: \
+			[[$class: 'StringParameterDefinition', name: 'GitRefName',     defaultValue: 'master', description: 'name of the ref that changed' ], \
+			 [$class: 'StringParameterDefinition', name: 'GitRefNewValue', defaultValue: 'HEAD',   description: 'new commit of the reference' ],  \
+			 [$class: 'StringParameterDefinition', name: 'GitRefOldValue', defaultValue: 'HEAD~1', description: 'old commit of the reference']]   \
+		]] )
+
 	try {
-		// //Prevent the build from exceeding 30 minutes
-		// timeout(30) {
-		//
+		echo "Properties-start"
+		echo "ref name      : ${GitRefName}"
+		echo "ref new value : ${GitRefNewValue}"
+		echo "ref old value : ${GitRefOldValue}"
+		echo "Properties-stop"
+
+		//Prevent the build from exceeding 30 minutes
+		timeout(30) {
+
 			//Wrap build to add timestamp to command line
 			wrap([$class: 'TimestamperBuildWrapper']) {
@@ -85,6 +97,14 @@
 				cfa_build()
 
+				//Compile using gcc-5
+				currentCC = new CC_Desc('gcc-5', 'g++-5', 'gcc-5')
+				cfa_build()
+
+				//Compile using gcc-4.9
+				currentCC = new CC_Desc('gcc-6', 'g++-6', 'gcc-6')
+				cfa_build()
+
 			}
-		// }
+		}
 
 	}
