We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7749d8b commit e431691Copy full SHA for e431691
Jenkinsfile
@@ -33,6 +33,9 @@ pipeline {
33
container('go') {
34
sh "make preview"
35
sh "jx preview --app $APP_NAME --dir ../.."
36
+
37
+ // verify if the preview was properly deployed
38
+ sh 'jx step verify --pods=1 --after=60 --restarts=0'
39
}
40
41
@@ -86,6 +89,9 @@ pipeline {
86
89
87
90
// promote through all 'Auto' promotion Environments
88
91
sh 'jx promote -b --all-auto --timeout 1h --version \$(cat ../../VERSION)'
92
93
+ // verify if the application was properly promoted
94
95
96
97
0 commit comments