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 16
16
#
17
17
18
18
# build go proxy from source
19
- FROM golang:1.12 AS builder_source
19
+ FROM golang:1.15 AS builder_source
20
20
ARG GO_PROXY_GITHUB_USER=apache
21
21
ARG GO_PROXY_GITHUB_BRANCH=master
22
22
RUN git clone --branch ${GO_PROXY_GITHUB_BRANCH} \
@@ -25,7 +25,7 @@ RUN git clone --branch ${GO_PROXY_GITHUB_BRANCH} \
25
25
mv proxy /bin/proxy
26
26
27
27
# or build it from a release
28
- FROM golang:1.12 AS builder_release
28
+ FROM golang:1.15 AS builder_release
29
29
30
30
RUN curl -sL \
31
31
https://github.com/apache/openwhisk-runtime-go/archive/{$GO_PROXY_RELEASE_VERSION}.tar.gz\
Original file line number Diff line number Diff line change 15
15
# limitations under the License.
16
16
#
17
17
# build go proxy from source
18
- FROM golang:1.12 AS builder_source
18
+ FROM golang:1.15 AS builder_source
19
19
ARG GO_PROXY_GITHUB_USER=apache
20
20
ARG GO_PROXY_GITHUB_BRANCH=master
21
21
RUN git clone --branch ${GO_PROXY_GITHUB_BRANCH} \
@@ -24,15 +24,15 @@ RUN git clone --branch ${GO_PROXY_GITHUB_BRANCH} \
24
24
mv proxy /bin/proxy
25
25
26
26
# or build it from a release
27
- FROM golang:1.12 AS builder_release
27
+ FROM golang:1.15 AS builder_release
28
28
29
29
RUN curl -sL \
30
30
https://github.com/apache/openwhisk-runtime-go/archive/{$GO_PROXY_RELEASE_VERSION}.tar.gz\
31
31
| tar xzf -\
32
32
&& cd openwhisk-runtime-go-*/main\
33
33
&& GO111MODULE=on go build -o /bin/proxy
34
34
35
- FROM python:3.7-stretch
35
+ FROM python:3.7-buster
36
36
ARG GO_PROXY_BUILD_FROM=source
37
37
38
38
# Install common modules for python
Original file line number Diff line number Diff line change 16
16
#
17
17
18
18
# build go proxy from source
19
- FROM golang:1.12 AS builder_source
19
+ FROM golang:1.15 AS builder_source
20
20
ARG GO_PROXY_GITHUB_USER=apache
21
21
ARG GO_PROXY_GITHUB_BRANCH=master
22
22
RUN git clone --branch ${GO_PROXY_GITHUB_BRANCH} \
@@ -25,7 +25,7 @@ RUN git clone --branch ${GO_PROXY_GITHUB_BRANCH} \
25
25
mv proxy /bin/proxy
26
26
27
27
# or build it from a release
28
- FROM golang:1.12 AS builder_release
28
+ FROM golang:1.15 AS builder_release
29
29
30
30
RUN curl -sL \
31
31
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 {
64
64
checkStreams(out, err, {
65
65
case (o, e) =>
66
66
o shouldBe empty
67
- e should include(" command exited before ack " )
67
+ e should include(" Command exited abruptly during initialization. " )
68
68
})
69
69
}
70
70
You can’t perform that action at this time.
0 commit comments