Index: Jenkinsfile
===================================================================
--- Jenkinsfile	(revision aad5a48f5db9cbd29da41d06a8df7ae2e94178ac)
+++ Jenkinsfile	(revision aad5a48f5db9cbd29da41d06a8df7ae2e94178ac)
@@ -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'
+ }
