You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@openwhisk.apache.org by GitBox <gi...@apache.org> on 2018/08/05 15:17:37 UTC

[GitHub] csantanapr closed pull request #6: Fix Travis CI badge link.

csantanapr closed pull request #6: Fix Travis CI badge link.
URL: https://github.com/apache/incubator-openwhisk-runtime-ballerina/pull/6
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

diff --git a/.gitignore b/.gitignore
index 1060795..cc37378 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,9 +3,12 @@
 .iml
 .balx
 .ballerina
+*~
 
 ballerina-internal.log
 
 .gradle/
 ballerina/proxy/build/
+ballerina/proxy/out/
 tests/build
+tests/out/
diff --git a/README.md b/README.md
index d378adb..21896ef 100644
--- a/README.md
+++ b/README.md
@@ -19,7 +19,7 @@
 
 # Apache OpenWhisk Runtime for Ballerina
 [![License](https://img.shields.io/badge/license-Apache--2.0-blue.svg)](http://www.apache.org/licenses/LICENSE-2.0)
-[![Build Status](https://travis-ci.com/apache/incubator-openwhisk-runtime-ballerina.svg?branch=master)](https://travis-ci.com/apache/incubator-openwhisk-runtime-ballerina)
+[![Build Status](https://travis-ci.org/apache/incubator-openwhisk-runtime-ballerina.svg?branch=master)](https://travis-ci.org/apache/incubator-openwhisk-runtime-ballerina)
 
 This repository contains the [Ballerina](https://ballerinalang.org) runtime for the Apache OpenWhisk serverless platform.
 
diff --git a/ballerina/hello-function.bal b/ballerina/hello-function.bal
deleted file mode 100644
index 6328206..0000000
--- a/ballerina/hello-function.bal
+++ /dev/null
@@ -1,11 +0,0 @@
-import ballerina/io;
-
-function main(string... args) {
-   io:println("started");
-}
-
-function run(json jsonInput) returns json {
-   io:println(jsonInput);
-   json output = { "response": "hello-world"};
-   return output;
-}
diff --git a/ballerina/hello-function.balx b/ballerina/hello-function.balx
deleted file mode 100644
index a4a56b1..0000000
Binary files a/ballerina/hello-function.balx and /dev/null differ
diff --git a/tests/src/test/resources/norun/norun.bal b/tests/src/test/resources/norun/norun.bal
index d10f024..a123813 100644
--- a/tests/src/test/resources/norun/norun.bal
+++ b/tests/src/test/resources/norun/norun.bal
@@ -5,6 +5,5 @@ function main(string... args) {
 }
 
 function example(json jsonInput) returns json {
-    json result = {"string":"hello"};
-    return result;
+    return jsonInput;
 }


 

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services