does Clean Workspace go at the end?
Some checks failed
gitea/franz/pipeline/head There was a failure building this commit

This commit is contained in:
Adam R Grey 2023-12-01 18:55:53 -05:00
parent 086b5776ff
commit 30eda5dd07

10
Jenkinsfile vendored
View File

@ -1,11 +1,6 @@
pipeline { pipeline {
agent any agent any
stages { stages {
stage ('Clean workspace') {
steps {
cleanWs()
}
}
stage('build franz') { stage('build franz') {
steps { steps {
echo 'building franz' echo 'building franz'
@ -23,6 +18,11 @@ pipeline {
sh 'dotnet publish topiclister/topiclister.csproj --configuration Release --output ./topiclister' sh 'dotnet publish topiclister/topiclister.csproj --configuration Release --output ./topiclister'
} }
} }
stage ('Clean workspace') {
steps {
cleanWs()
}
}
} }
post { post {
always { always {