Add another stage

Tento commit je obsažen v:
Mario 2018-11-27 14:13:49 -08:00
rodič 1a51293f45
revize b523ee7c9d

17
Jenkinsfile vendorováno
Zobrazit soubor

@ -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'
}
}
}
}
}