Add another stage

This commit is contained in:
Mario 2018-11-27 14:13:49 -08:00
parent 1a51293f45
commit b523ee7c9d

17
Jenkinsfile vendored
View file

@ -12,3 +12,20 @@ pipeline {
}
}
}
pipeline {
agent any
stages {
stage("Deploy") {
steps {
retry(3) {
sh './flakey-deploy.sh'
}
timeout(time: 3, unit: 'MINUTES') {
sh './health-check.sh'
}
}
}
}
}