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

rabbah pushed a change to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-openwhisk-runtime-ballerina.git.


    from 921f846  Placeholder.
     new 026e16b  updating readme
     new d140bf7  Updating build link to apache
     new 959f7df  Updating build link to apache
     new e125175  updating .gitignore
     new 0ce92d1  Removing references to older 
mpmunasinghe/openwshik-runtime-ballerina repo
     new c5ef93d  Updating doc comment in proxy

The 6 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .gitignore                                         |  11 +
 .scalafmt.conf                                     |   9 +
 .travis.yml                                        |  41 ++++
 README.md                                          | 118 +++++++++-
 ballerina/Dockerfile                               |  41 ++++
 ballerina/build.gradle                             |  19 ++
 ballerina/hello-function.bal                       |  11 +
 ballerina/hello-function.balx                      | Bin 0 -> 668543 bytes
 ballerina/proxy/build.gradle                       |  92 ++++++++
 ballerina/proxy/gradle/wrapper/gradle-wrapper.jar  | Bin 0 -> 54413 bytes
 .../proxy/gradle/wrapper/gradle-wrapper.properties |   8 +
 ballerina/proxy/gradlew                            | 172 +++++++++++++++
 ballerina/proxy/gradlew.bat                        |  84 +++++++
 .../openwhisk/runtime/Application.java             |  29 +++
 .../openwhisk/runtime/BallerinaProxy.java          | 243 +++++++++++++++++++++
 .../openwhisk/runtime/BalxLoader.java              | 105 +++++++++
 .../ballerinalang/openwhisk/runtime/Constants.java |  47 ++++
 build.gradle                                       |  30 +++
 gradle/docker.gradle                               | 116 ++++++++++
 gradle/wrapper/gradle-wrapper.jar                  | Bin 0 -> 54413 bytes
 gradle/wrapper/gradle-wrapper.properties           |   8 +
 gradlew                                            | 172 +++++++++++++++
 gradlew.bat                                        |  84 +++++++
 settings.gradle                                    |  46 ++++
 tests/build.gradle                                 |  56 +++++
 tests/src/test/resources/echo/echo.bal             |  12 +
 tests/src/test/resources/envparams/envparams.bal   |  17 ++
 tests/src/test/resources/fail/fail.bal             |   5 +
 tests/src/test/resources/hello/hello.bal           |  11 +
 tests/src/test/resources/norun/norun.bal           |  10 +
 .../resources/return-response/return-response.bal  |   9 +
 tests/src/test/resources/unicode/unicode.bal       |  13 ++
 .../BallerinaActionContainerTests.scala            | 165 ++++++++++++++
 tools/travis/build.sh                              |  43 ++++
 tools/travis/publish.sh                            |  40 ++++
 tools/travis/setup.sh                              |  34 +++
 tools/travis/test.sh                               |  30 +++
 37 files changed, 1930 insertions(+), 1 deletion(-)
 create mode 100644 .gitignore
 create mode 100644 .scalafmt.conf
 create mode 100644 .travis.yml
 create mode 100644 ballerina/Dockerfile
 create mode 100644 ballerina/build.gradle
 create mode 100644 ballerina/hello-function.bal
 create mode 100644 ballerina/hello-function.balx
 create mode 100644 ballerina/proxy/build.gradle
 create mode 100644 ballerina/proxy/gradle/wrapper/gradle-wrapper.jar
 create mode 100644 ballerina/proxy/gradle/wrapper/gradle-wrapper.properties
 create mode 100755 ballerina/proxy/gradlew
 create mode 100644 ballerina/proxy/gradlew.bat
 create mode 100644 
ballerina/proxy/src/main/java/org/ballerinalang/openwhisk/runtime/Application.java
 create mode 100644 
ballerina/proxy/src/main/java/org/ballerinalang/openwhisk/runtime/BallerinaProxy.java
 create mode 100644 
ballerina/proxy/src/main/java/org/ballerinalang/openwhisk/runtime/BalxLoader.java
 create mode 100644 
ballerina/proxy/src/main/java/org/ballerinalang/openwhisk/runtime/Constants.java
 create mode 100644 build.gradle
 create mode 100644 gradle/docker.gradle
 create mode 100644 gradle/wrapper/gradle-wrapper.jar
 create mode 100644 gradle/wrapper/gradle-wrapper.properties
 create mode 100755 gradlew
 create mode 100644 gradlew.bat
 create mode 100644 settings.gradle
 create mode 100644 tests/build.gradle
 create mode 100644 tests/src/test/resources/echo/echo.bal
 create mode 100644 tests/src/test/resources/envparams/envparams.bal
 create mode 100644 tests/src/test/resources/fail/fail.bal
 create mode 100644 tests/src/test/resources/hello/hello.bal
 create mode 100644 tests/src/test/resources/norun/norun.bal
 create mode 100644 tests/src/test/resources/return-response/return-response.bal
 create mode 100644 tests/src/test/resources/unicode/unicode.bal
 create mode 100644 
tests/src/test/scala/actionContainers/BallerinaActionContainerTests.scala
 create mode 100755 tools/travis/build.sh
 create mode 100755 tools/travis/publish.sh
 create mode 100755 tools/travis/setup.sh
 create mode 100755 tools/travis/test.sh

Reply via email to