Add clearing stage

master
jannisp 2021-08-30 13:46:35 +02:00
parent 533d9fbc4d
commit 6eac8ab633
1 changed files with 4 additions and 0 deletions

4
Jenkinsfile vendored
View File

@ -1,4 +1,8 @@
node {
stage('Empty workspace') {
sh 'rm -rd *'
}
stage('Pull git') {
checkout scm
}