You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by ra...@apache.org on 2019/05/20 19:58:34 UTC

[incubator-openwhisk] branch master updated: Fixing Jenkins Lean Openwhisk test (#4482)

This is an automated email from the ASF dual-hosted git repository.

rabbah pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-openwhisk.git


The following commit(s) were added to refs/heads/master by this push:
     new 55d975f  Fixing Jenkins Lean Openwhisk test (#4482)
55d975f is described below

commit 55d975fddd7f0f637715cb4b5b745a6cdbdbea44
Author: Pavel Kravchenko <kp...@il.ibm.com>
AuthorDate: Mon May 20 22:58:23 2019 +0300

    Fixing Jenkins Lean Openwhisk test (#4482)
---
 Jenkinsfile | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index d867d7f..17fd16f 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -76,7 +76,11 @@ timeout(time: 12, unit: 'HOURS') {
                             sh 'ansible-playbook -i environments/jenkins couchdb.yml'
                             sh 'ansible-playbook -i environments/jenkins initdb.yml'
                             sh 'ansible-playbook -i environments/jenkins wipe.yml'
+                            sh 'ansible-playbook -i environments/jenkins apigateway.yml'
                             sh 'ansible-playbook -i environments/jenkins openwhisk.yml -e lean=true'
+                            sh 'ansible-playbook -i environments/jenkins properties.yml'
+                            sh 'ansible-playbook -i environments/jenkins routemgmt.yml'
+                            sh 'ansible-playbook -i environments/jenkins postdeploy.yml'
                         }
                     }
 
@@ -92,11 +96,7 @@ timeout(time: 12, unit: 'HOURS') {
                     stage('Deploy full Openwhisk') {
                         dir("ansible") {
                             sh 'ansible-playbook -i environments/jenkins openwhisk.yml -e mode=clean'
-                            sh 'ansible-playbook -i environments/jenkins apigateway.yml'
                             sh 'ansible-playbook -i environments/jenkins openwhisk.yml'
-                            sh 'ansible-playbook -i environments/jenkins properties.yml'
-                            sh 'ansible-playbook -i environments/jenkins routemgmt.yml'
-                            sh 'ansible-playbook -i environments/jenkins postdeploy.yml'
                         }
                     }