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 2018/07/30 17:00:56 UTC

[incubator-openwhisk-runtime-ballerina] branch master updated: Fix repo name and image name. (#2)

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


The following commit(s) were added to refs/heads/master by this push:
     new 95cb6fb  Fix repo name and image name. (#2)
95cb6fb is described below

commit 95cb6fb272f976fd23564eae690c7fd749e56cf2
Author: rodric rabbah <ro...@gmail.com>
AuthorDate: Mon Jul 30 13:00:53 2018 -0400

    Fix repo name and image name. (#2)
---
 .travis.yml                                                             | 2 +-
 README.md                                                               | 2 +-
 ballerina/build.gradle                                                  | 2 +-
 .../src/test/scala/actionContainers/BallerinaActionContainerTests.scala | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 1c77591..6acbcb1 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -29,7 +29,7 @@ deploy:
     on:
       tags: true
       all_branches: true
-      repo: apache/incubator-openwhisk-runtime-java
+      repo: apache/incubator-openwhisk-runtime-ballerina
   - provider: script
     script: "./tools/travis/publish.sh openwhisk latest"
     on:
diff --git a/README.md b/README.md
index cd539b5..d378adb 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 openwhisk/balaction
+wsk action create hello hello.balx --docker openwhisk/action-ballerina-v0.975
 ```
 
 Now you're ready to invoke the action:
diff --git a/ballerina/build.gradle b/ballerina/build.gradle
index b1e96aa..33b36ed 100644
--- a/ballerina/build.gradle
+++ b/ballerina/build.gradle
@@ -15,5 +15,5 @@
  * limitations under the License.
  */
 
-ext.dockerImageName = 'balaction'
+ext.dockerImageName = 'action-ballerina-v0.975'
 apply from: '../gradle/docker.gradle'
diff --git a/tests/src/test/scala/actionContainers/BallerinaActionContainerTests.scala b/tests/src/test/scala/actionContainers/BallerinaActionContainerTests.scala
index d5ad43b..9a3e391 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 = "balaction"
+  lazy val ballerinaContainerImageName = "action-ballerina-v0.975"
 
   override def withActionContainer(env: Map[String, String] = Map.empty)(code: ActionContainer => Unit) = {
     withContainer(ballerinaContainerImageName, env)(code)