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 2018/07/23 17:55:18 UTC

[incubator-openwhisk-runtime-ballerina] 05/06: Removing references to older mpmunasinghe/openwshik-runtime-ballerina repo

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-runtime-ballerina.git

commit 0ce92d143410dc4616401a1aa75d5e00bfd70200
Author: mpmunasinghe <mp...@gmail.com>
AuthorDate: Mon Jul 16 14:10:43 2018 +0530

    Removing references to older mpmunasinghe/openwshik-runtime-ballerina repo
---
 .travis.yml                                                 | 13 +++++++------
 README.md                                                   |  2 +-
 ballerina/build.gradle                                      |  1 -
 settings.gradle                                             |  2 +-
 .../actionContainers/BallerinaActionContainerTests.scala    |  2 +-
 5 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 05cd30c..1c77591 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -24,16 +24,17 @@ install: true
 script:
 - "./tools/travis/build.sh && ./tools/travis/test.sh"
 deploy:
-#  - provider: script
-#    script: "./tools/travis/publish.sh openwhisk ${TRAVIS_TAG##*@}"
-#    on:
-#      tags: true
-#      all_branches: true
+  - provider: script
+    script: "./tools/travis/publish.sh openwhisk ${TRAVIS_TAG##*@}"
+    on:
+      tags: true
+      all_branches: true
+      repo: apache/incubator-openwhisk-runtime-java
   - provider: script
     script: "./tools/travis/publish.sh openwhisk latest"
     on:
       branch: master
-      repo: mpmunasinghe/openwhisk-runtime-ballerina
+      repo: apache/incubator-openwhisk-runtime-ballerina
 env:
   global:
   - secure: D4kU9O6bs63Myb4jaEgw1O2Kuy6aTAUKEX1qZ0eYMDouLnPOPnZaFWmpISKTrJyz7hJH7yY8Cj7xl5qwsLB6JZZMtqT6yj5J/jkUJjyLKdQH81PrYy22rH99xS2t5A1dsC0A/Bf39R/qNc5tx1wCMVDF4O2rFsUtn+8vE+rn0nXsiPeWhhZagk/Hrq8YbwzDJHOGHfWe1nZIcU8MORzTriX7J2VAF0AcirPandMxff4FgzNLk432DN2GvgZIlNtZGT1DWLtJV/Sp3unD9abXr5xqNDIW+fHrMq8j/JdHC6+PFtZRFrl0Vr6X8c61PkB/ELGF2MyzNgBTnEaJixl1pianr91WK4y0oLUwpSJCz4yoQGVimAAtqMgNXjEyFMcpLClzS5TjMXKaUfi9mBn9GMCwLi3VAuVtMtH2IRW03PxIPyxkbj1j8Nrd0jh408MuMpuzyECgb+E5ffbd+0YD5XUNlTkYLFi4 [...]
diff --git a/README.md b/README.md
index 926d00a..cd539b5 100644
--- a/README.md
+++ b/README.md
@@ -69,7 +69,7 @@ Use the OpenWhisk [`wsk` CLI](https://github.com/apache/incubator-openwhisk/blob
 to create your Ballerina action.
 
 ```bash
-wsk action create hello hello.balx --docker mpmunasinghe/balaction
+wsk action create hello hello.balx --docker openwhisk/balaction
 ```
 
 Now you're ready to invoke the action:
diff --git a/ballerina/build.gradle b/ballerina/build.gradle
index a9f2852..b1e96aa 100644
--- a/ballerina/build.gradle
+++ b/ballerina/build.gradle
@@ -16,5 +16,4 @@
  */
 
 ext.dockerImageName = 'balaction'
-ext.dockerImagePrefix = "mpmunasinghe"
 apply from: '../gradle/docker.gradle'
diff --git a/settings.gradle b/settings.gradle
index 400f0ef..e25013f 100644
--- a/settings.gradle
+++ b/settings.gradle
@@ -20,7 +20,7 @@ include 'ballerina'
 include 'ballerina:proxy'
 
 
-rootProject.name = 'openwhisk-runtime-ballerina'
+rootProject.name = 'incubator-openwhisk-runtime-ballerina'
 
 gradle.ext.openwhisk = [
         version: '1.0.0-SNAPSHOT'
diff --git a/tests/src/test/scala/actionContainers/BallerinaActionContainerTests.scala b/tests/src/test/scala/actionContainers/BallerinaActionContainerTests.scala
index 0cd1ce1..d5ad43b 100644
--- a/tests/src/test/scala/actionContainers/BallerinaActionContainerTests.scala
+++ b/tests/src/test/scala/actionContainers/BallerinaActionContainerTests.scala
@@ -34,7 +34,7 @@ import spray.json._
 @RunWith(classOf[JUnitRunner])
 class BallerinaActionContainerTests extends BasicActionRunnerTests with WskActorSystem {
 
-  lazy val ballerinaContainerImageName = "mpmunasinghe/balaction"
+  lazy val ballerinaContainerImageName = "balaction"
 
   override def withActionContainer(env: Map[String, String] = Map.empty)(code: ActionContainer => Unit) = {
     withContainer(ballerinaContainerImageName, env)(code)