File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed
tests/src/test/scala/runtime/actionContainers Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 1616#
1717
1818# build go proxy from source
19- FROM golang:1.12 AS builder_source
19+ FROM golang:1.15 AS builder_source
2020ARG GO_PROXY_GITHUB_USER=apache
2121ARG GO_PROXY_GITHUB_BRANCH=master
2222RUN git clone --branch ${GO_PROXY_GITHUB_BRANCH} \
@@ -25,7 +25,7 @@ RUN git clone --branch ${GO_PROXY_GITHUB_BRANCH} \
2525 mv proxy /bin/proxy
2626
2727# or build it from a release
28- FROM golang:1.12 AS builder_release
28+ FROM golang:1.15 AS builder_release
2929ARG GO_PROXY_RELEASE_VERSION=1.12@1.15.0
3030RUN curl -sL \
3131 https://github.com/apache/openwhisk-runtime-go/archive/{$GO_PROXY_RELEASE_VERSION}.tar.gz\
Original file line number Diff line number Diff line change 1515# limitations under the License.
1616#
1717# build go proxy from source
18- FROM golang:1.12 AS builder_source
18+ FROM golang:1.15 AS builder_source
1919ARG GO_PROXY_GITHUB_USER=apache
2020ARG GO_PROXY_GITHUB_BRANCH=master
2121RUN git clone --branch ${GO_PROXY_GITHUB_BRANCH} \
@@ -24,15 +24,15 @@ RUN git clone --branch ${GO_PROXY_GITHUB_BRANCH} \
2424 mv proxy /bin/proxy
2525
2626# or build it from a release
27- FROM golang:1.12 AS builder_release
27+ FROM golang:1.15 AS builder_release
2828ARG GO_PROXY_RELEASE_VERSION=1.12@1.15.0
2929RUN curl -sL \
3030 https://github.com/apache/openwhisk-runtime-go/archive/{$GO_PROXY_RELEASE_VERSION}.tar.gz\
3131 | tar xzf -\
3232 && cd openwhisk-runtime-go-*/main\
3333 && GO111MODULE=on go build -o /bin/proxy
3434
35- FROM python:3.7-stretch
35+ FROM python:3.7-buster
3636ARG GO_PROXY_BUILD_FROM=source
3737
3838# Install common modules for python
Original file line number Diff line number Diff line change 1616#
1717
1818# build go proxy from source
19- FROM golang:1.12 AS builder_source
19+ FROM golang:1.15 AS builder_source
2020ARG GO_PROXY_GITHUB_USER=apache
2121ARG GO_PROXY_GITHUB_BRANCH=master
2222RUN git clone --branch ${GO_PROXY_GITHUB_BRANCH} \
@@ -25,7 +25,7 @@ RUN git clone --branch ${GO_PROXY_GITHUB_BRANCH} \
2525 mv proxy /bin/proxy
2626
2727# or build it from a release
28- FROM golang:1.12 AS builder_release
28+ FROM golang:1.15 AS builder_release
2929ARG GO_PROXY_RELEASE_VERSION=1.12@1.15.0
3030RUN curl -sL \
3131 https://github.com/apache/openwhisk-runtime-go/archive/${GO_PROXY_RELEASE_VERSION}.tar.gz\
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ trait PythonActionLoopExtraTests {
6464 checkStreams(out, err, {
6565 case (o, e) =>
6666 o shouldBe empty
67- e should include(" command exited before ack " )
67+ e should include(" Command exited abruptly during initialization. " )
6868 })
6969 }
7070
You can’t perform that action at this time.
0 commit comments