kill build dir before jenkins build

This commit is contained in:
Grant Limberg 2019-08-12 12:44:47 -07:00
parent 4fae382ffd
commit 710b69fc75

3
Jenkinsfile vendored
View file

@ -14,7 +14,8 @@ parallel 'centos7': {
checkout scm checkout scm
stage('Build Centos 7') { stage('Build Centos 7') {
sh '''mkdir build && cd build sh '''rm -rf build/
mkdir build && cd build
CC=clang CXX=clang++ cmake .. CC=clang CXX=clang++ cmake ..
make -j4 make -j4
''' '''