update jenkins to use cmake for builds

This commit is contained in:
Grant Limberg 2019-08-01 15:13:06 -07:00
parent 39ad7bc741
commit 7e5c68c553

5
Jenkinsfile vendored
View File

@ -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) {