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/05/02 00:42:53 UTC

[incubator-openwhisk-runtime-go] branch master updated (5d10e9f -> f897961)

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

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


    omit 5d10e9f  Merge pull request #8 from sciabarracom/master
     new f897961  Merge pull request #8 from sciabarracom/master

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (5d10e9f)
            \
             N -- N -- N   refs/heads/master (f897961)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 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:

-- 
To stop receiving notification emails like this one, please contact
csantanapr@apache.org.

[incubator-openwhisk-runtime-go] 01/01: Merge pull request #8 from sciabarracom/master

Posted by cs...@apache.org.
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-go.git

commit f897961dd3c0cd9b907a493596aa6f6e58cf9f3a
Merge: c16d4d3 6e80a9d
Author: Michele Sciabarra <sc...@sciabarra.com>
AuthorDate: Tue May 1 00:00:30 2018 -0400

    Merge pull request #8 from sciabarracom/master

 .gitattributes                                     |  31 +++
 .gitignore                                         |  13 +-
 .travis.yml                                        |  33 +++
 CREDITS.txt                                        |   3 +
 NOTICE.md => NOTICE.txt                            |   3 +-
 README.md                                          | 133 +++++++++++-
 core/actionloop-golang/Dockerfile                  |  13 ++
 core/actionloop-golang/build.gradle                |  17 ++
 core/actionloop/Dockerfile                         |   6 +
 core/actionloop/build.gradle                       |  10 +
 core/gobuild                                       |  48 +++++
 main/proxy.go                                      |  20 +-
 openwhisk/_test/action/.gitignore                  |   8 +
 main/proxy.go => openwhisk/_test/action/hello.go   |  39 ++--
 .../_test/action/hello_test.go                     |  33 ++-
 .../_test/action/main.go                           |  17 +-
 openwhisk/_test/build.sh                           |  48 ++++-
 openwhisk/_test/dir/etc                            |   1 +
 openwhisk/_test/etc                                |   1 +
 openwhisk/_test/exec.go                            |  20 +-
 .../hello_greeting.go => openwhisk/_test/exec.src  |  14 +-
 main/proxy.go => openwhisk/_test/hello.src         |  27 ++-
 main/proxy.go => openwhisk/_test/hello1.src        |  32 +--
 .../_test/hello_greeting.src                       |   8 +-
 .../_test/hello_message.src                        |  20 +-
 .../hello_greeting.go => openwhisk/_test/hi.src    |  12 +-
 openwhisk/_test/postcompile.sh                     |   6 +
 openwhisk/_test/precompile.sh                      |  14 ++
 openwhisk/_test/zips.sh                            |   4 +
 openwhisk/actionProxy.go                           |  87 +++++---
 openwhisk/actionProxy_test.go                      |  72 +++++--
 openwhisk/compiler.go                              |  76 +++++++
 openwhisk/compiler_test.go                         | 165 ++++++++++++++
 openwhisk/executor.go                              |  43 ++--
 openwhisk/executor_test.go                         |  22 +-
 openwhisk/extractor.go                             |  31 ++-
 openwhisk/extractor_test.go                        |  53 +++--
 openwhisk/initHandler.go                           |  71 ++++--
 openwhisk/initHandler_test.go                      | 238 +++++++++++++++++++++
 openwhisk/runHandler.go                            |  15 +-
 openwhisk/util_test.go                             | 141 ++++++++++++
 settings.gradle                                    |   3 +
 test/NOTES.md                                      |  38 ++++
 test/README.md                                     |   9 -
 test/bin/build.sh                                  |  25 ++-
 test/bin/init.sh                                   |  33 ++-
 test/bin/post.sh                                   |  16 ++
 test/bin/run.sh                                    |  18 +-
 test/crammer.sh                                    |  21 ++
 main/proxy.go => test/etc/hello.go                 |  24 +--
 test/etc/hello.js                                  |  18 ++
 test/etc/hello.sh                                  |  16 ++
 main/proxy.go => test/golang/hello/hello.go        |  32 +--
 main/proxy.go => test/golang/main/main.go          |  27 ++-
 test/golang/out/hello                              | Bin 0 -> 8458012 bytes
 test/golang/out/main                               | Bin 0 -> 8458011 bytes
 test/src/hello/hello.go                            |  16 ++
 test/src/hello/hello_test.go                       |  16 ++
 test/src/hello_greeting.go                         |   4 +-
 test/start.sh                                      |  26 ++-
 test/stop.sh                                       |  26 +++
 .../hello_greeting.go => swift/hello/hello.swift}  |  21 +-
 .../hello_greeting.go => swift/main/main.swift}    |  20 +-
 test/swift/out/hello                               | Bin 0 -> 43448 bytes
 test/swift/out/main                                | Bin 0 -> 43448 bytes
 test/test_actionloop-golang.t                      |  66 ++++++
 test/{test.t => test_actionloop.t}                 |  52 ++++-
 tools/travis/build.sh                              |  40 ++++
 tools/travis/setup.sh                              |  30 +++
 tools/travis/test.sh                               |  33 +++
 70 files changed, 1946 insertions(+), 332 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
csantanapr@apache.org.