Set timeout (15 minutes) in the Jenkins CI 'Deploy Docs' and 'Deploy Artifacts' build stages.

This commit is contained in:
John Blum
2021-12-07 13:26:37 -08:00
parent f145fcac7e
commit 4c382bc2df

6
Jenkinsfile vendored
View File

@@ -55,6 +55,9 @@ pipeline {
}
stage ('Deploy Docs') {
options {
timeout(time: 15, unit: "MINUTES")
}
steps {
script {
docker.withRegistry('', 'hub.docker.com-springbuildmaster') {
@@ -75,6 +78,9 @@ pipeline {
}
stage ('Deploy Artifacts') {
options {
timeout(time: 15, unit: "MINUTES")
}
steps {
script {
docker.withRegistry('', 'hub.docker.com-springbuildmaster') {