diff --git a/Jenkinsfile b/Jenkinsfile index 88989327e..0b27e0e99 100644 --- a/Jenkinsfile +++ b/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) {