Jenkins refactor
gitea/vn-autoconfig/master This commit looks good Details

This commit is contained in:
Juan Ferrer 2020-01-31 13:33:02 +01:00
parent bf8634b3ee
commit 46c8a0f207
1 changed files with 2 additions and 6 deletions

8
Jenkinsfile vendored
View File

@ -8,9 +8,7 @@ pipeline {
stages {
stage('Checkout') {
steps {
script {
util.setEnv()
}
setEnv()
}
}
stage('Build') {
@ -37,9 +35,7 @@ pipeline {
}
post {
always {
script {
util.sendEmail()
}
sendEmail()
}
}
}