don't freak out if the makefile isn't there.

portability/macos
Rachel Fae Fox 2019-07-22 09:50:33 -04:00
parent 069f2971ce
commit dfbd976ef1
1 changed files with 5 additions and 5 deletions

10
Jenkinsfile vendored
View File

@ -5,7 +5,7 @@ pipeline {
steps {
sh '''cd xybrid
make clean || true
rm Makefile'''
rm Makefile || true'''
}
}
stage('qbuild') {
@ -14,9 +14,9 @@ rm Makefile'''
}
}
stage('Make') {
steps {
sh 'make'
}
steps {
sh 'make'
}
}
}
}
}