maven_project/Jenkinsfile
first_admin afb755c9d7
All checks were successful
jenkins_organization/maven_project/pipeline/head This commit looks good
Update Jenkinsfile
2024-08-29 18:02:04 +00:00

29 lines
594 B
Groovy

pipeline {
agent {
label 'agent1'
}
stages {
stage('Hello') {
steps {
// Uruchomienie testów jednostkowych
script {
echo 'hello world'
}
}
}
}
post {
success {
// Archiwizacja artefaktów po udanym budowaniu
archiveArtifacts artifacts: 'target/*.jar', allowEmptyArchive: true
}
failure {
// Powiadomienie o nieudanym budowaniu
echo 'Build failed!'
}
}
}