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

[incubator-openwhisk-runtime-java] branch master updated: push java8 actionloop (#85)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new e41459d  push java8 actionloop (#85)
e41459d is described below

commit e41459d164c78f63fac3111e3661f1ea4b773327
Author: Michele Sciabarra <30...@users.noreply.github.com>
AuthorDate: Mon May 20 00:43:06 2019 +0200

    push java8 actionloop (#85)
---
 .travis.yml             | 5 +++++
 tools/travis/publish.sh | 2 ++
 2 files changed, 7 insertions(+)

diff --git a/.travis.yml b/.travis.yml
index 936b1ef..99aa983 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -37,6 +37,11 @@ deploy:
     on:
       branch: master
       repo: apache/incubator-openwhisk-runtime-java
+  - provider: script
+    script: "./tools/travis/publish.sh openwhisk 8a latest"
+    on:
+      branch: master
+      repo: apache/incubator-openwhisk-runtime-java
 env:
   global:
   - secure: D4kU9O6bs63Myb4jaEgw1O2Kuy6aTAUKEX1qZ0eYMDouLnPOPnZaFWmpISKTrJyz7hJH7yY8Cj7xl5qwsLB6JZZMtqT6yj5J/jkUJjyLKdQH81PrYy22rH99xS2t5A1dsC0A/Bf39R/qNc5tx1wCMVDF4O2rFsUtn+8vE+rn0nXsiPeWhhZagk/Hrq8YbwzDJHOGHfWe1nZIcU8MORzTriX7J2VAF0AcirPandMxff4FgzNLk432DN2GvgZIlNtZGT1DWLtJV/Sp3unD9abXr5xqNDIW+fHrMq8j/JdHC6+PFtZRFrl0Vr6X8c61PkB/ELGF2MyzNgBTnEaJixl1pianr91WK4y0oLUwpSJCz4yoQGVimAAtqMgNXjEyFMcpLClzS5TjMXKaUfi9mBn9GMCwLi3VAuVtMtH2IRW03PxIPyxkbj1j8Nrd0jh408MuMpuzyECgb+E5ffbd+0YD5XUNlTkYLFi4 [...]
diff --git a/tools/travis/publish.sh b/tools/travis/publish.sh
index 601d950..26fd15f 100755
--- a/tools/travis/publish.sh
+++ b/tools/travis/publish.sh
@@ -34,6 +34,8 @@ if [ ${RUNTIME_VERSION} == "8" ]; then
   RUNTIME="java8"
 elif [ ${RUNTIME_VERSION} == "10" ]; then
   RUNTIME="java10"
+elif [ ${RUNTIME_VERSION} == "8a" ]; then
+  RUNTIME="java8actionloop"
 fi
 
 if [[ ! -z ${DOCKER_USER} ]] && [[ ! -z ${DOCKER_PASSWORD} ]]; then