#7 cleanup after build
Some checks failed
platform/bro/pipeline/head There was a failure building this commit
platform/bro/pipeline/pr-master There was a failure building this commit

This commit is contained in:
Primakov Alexandr Alexandrovich 2024-03-29 13:29:35 +03:00
parent cb525f8c19
commit 5d075ac6da

8
Jenkinsfile vendored
View File

@ -25,5 +25,13 @@ pipeline {
sh 'npm run build'
}
}
stage('clean-all') {
steps {
sh 'rm -rf .[!.]*'
sh 'rm -rf ./*'
sh 'ls -a'
}
}
}
}