Browse Source

update jenkins to use cmake for builds

Grant Limberg 6 years ago
parent
commit
7e5c68c553
1 changed files with 4 additions and 1 deletions
  1. 4 1
      Jenkinsfile

+ 4 - 1
Jenkinsfile

@@ -14,7 +14,10 @@ parallel 'centos7': {
             checkout scm
 
 	        stage('Build Centos 7') {
-                sh 'make -f make-linux.mk'
+		sh '''mkdir build && cd build
+		      CC=clang CXX=clang++ cmake ..
+		      make -j4
+		'''
             }
         }
         catch (err) {