This is an automated email from the ASF dual-hosted git repository.
chetanm pushed a commit to branch master
in repository
https://gitbox.apache.org/repos/asf/incubator-openwhisk-apigateway.git
The following commit(s) were added to refs/heads/master by this push:
new b4d25b5 Move gateway playbook after openwhisk. (#314)
b4d25b5 is described below
commit b4d25b59d5caf86f4bc40e8c13ed72ba8d598c88
Author: rodric rabbah <[email protected]>
AuthorDate: Fri Jun 29 06:14:18 2018 -0400
Move gateway playbook after openwhisk. (#314)
Move gateway playbook after openwhisk as preparation for
apache/incubator-openwhisk#3760. Also remove unnecessary/invalid excludes.
---
tools/travis/build.sh | 11 ++++-------
1 file changed, 4 insertions(+), 7 deletions(-)
diff --git a/tools/travis/build.sh b/tools/travis/build.sh
index 29f9813..f5a7606 100755
--- a/tools/travis/build.sh
+++ b/tools/travis/build.sh
@@ -47,23 +47,20 @@ pwd
docker build . -t "openwhisk/apigateway"
popd
+$ANSIBLE_CMD wipe.yml
+$ANSIBLE_CMD openwhisk.yml -e cli_installation_mode=remote -e
controllerProtocolForSetup=http
+
#Use local
$ANSIBLE_CMD apigateway.yml -e apigateway_local_build=true
#Use dockerhub
#$ANSIBLE_CMD apigateway.yml
-
-$ANSIBLE_CMD wipe.yml
-$ANSIBLE_CMD openwhisk.yml -e cli_installation_mode=remote -e
controllerProtocolForSetup=http
-
-
-
# Tests
cd $OPENWHISK_HOME
cat whisk.properties
-WSK_TESTS_DEPS_EXCLUDE="-x :actionRuntimes:pythonAction:distDocker -x
:actionRuntimes:javaAction:distDocker -x
:actionRuntimes:nodejs6Action:distDocker -x
:actionRuntimes:nodejs8Action:distDocker -x
:actionRuntimes:actionProxy:distDocker -x :sdk:docker:distDocker -x
:actionRuntimes:python2Action:distDocker -x
:tests:dat:blackbox:badaction:distDocker -x
:tests:dat:blackbox:badproxy:distDocker"
+WSK_TESTS_DEPS_EXCLUDE=""
TERM=dumb ./gradlew tests:test --tests apigw.healthtests.*
${WSK_TESTS_DEPS_EXCLUDE}
sleep 60