diff --git a/Jenkinsfile b/Jenkinsfile index 0b27e0e99..457210adc 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -14,7 +14,8 @@ parallel 'centos7': { checkout scm stage('Build Centos 7') { - sh '''mkdir build && cd build + sh '''rm -rf build/ + mkdir build && cd build CC=clang CXX=clang++ cmake .. make -j4 '''