Index: Jenkinsfile
===================================================================
--- Jenkinsfile	(revision 220ca4a36da7d029b2048ab30c8d04727c0e080a)
+++ Jenkinsfile	(revision 220ca4a36da7d029b2048ab30c8d04727c0e080a)
@@ -0,0 +1,6 @@
+node ('linux'){
+  stage 'Build'
+  checkout scm //checkout the source code from source control
+  sh 'CC=gcc-4.9 CXX=g++-4.9 ./configure'
+  sh 'make -j 8'
+ }
