This commit is contained in:
2025-10-14 15:11:33 +07:00
parent f4954b76d7
commit 1f6b17b1d3

18
Jenkinsfile vendored
View File

@@ -19,20 +19,22 @@ pipeline {
junit 'target/surefire-reports/*.xml'
}
post {
always {
cleanWs()
}
success {
echo 'Build success'
}
}
}
stage('deploy') {
}
post {
always {
cleanWs()
}
success {
echo 'Build success'
}
}
}
}