File tree 4 files changed +46
-4
lines changed
4 files changed +46
-4
lines changed Original file line number Diff line number Diff line change 16
16
- 1.12.x
17
17
- 1.13.x
18
18
- 1.14.x
19
+ - 1.15.x
19
20
- tip
20
21
21
22
matrix :
@@ -35,6 +36,8 @@ matrix:
35
36
go : 1.13.x
36
37
- os : windows
37
38
go : 1.14.x
39
+ - os : windows
40
+ go : 1.15.x
38
41
- os : windows
39
42
go : tip
40
43
@@ -43,16 +46,17 @@ before_install:
43
46
44
47
script :
45
48
- if [ -z $(go env GOMOD) ]; then
46
- if [ "$TRAVIS_GO_VERSION" == "1.12.x" ] ||
49
+ if [ "$TRAVIS_GO_VERSION" == "1.13.x" ] ||
50
+ [ "$TRAVIS_GO_VERSION" == "1.12.x" ] ||
47
51
[ "$TRAVIS_GO_VERSION" == "1.11.x" ] ||
48
52
[ "$TRAVIS_GO_VERSION" == "1.10.x" ]; then
49
53
make get-deps-x-tests;
50
54
fi;
51
55
make get-deps;
52
56
fi;
53
57
if [ "$TRAVIS_GO_VERSION" == "tip" ] ||
54
- [ "$TRAVIS_GO_VERSION" == "1.14 .x" ] ||
55
- [ "$TRAVIS_GO_VERSION" == "1.13 .x" ]; then
58
+ [ "$TRAVIS_GO_VERSION" == "1.15 .x" ] ||
59
+ [ "$TRAVIS_GO_VERSION" == "1.14 .x" ]; then
56
60
57
61
if [ "$TRAVIS_OS_NAME" = "windows" ]; then
58
62
make unit-no-verify;
Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ cleanup-integ-buckets:
108
108
# ##################
109
109
# Sandbox Testing #
110
110
# ##################
111
- sandbox-tests : sandbox-test-go1.5 sandbox-test-go1.6 sandbox-test-go1.7 sandbox-test-go1.8 sandbox-test-go1.9 sandbox-test-go1.10 sandbox-test-go1.11 sandbox-test-go1.12 sandbox-test-gotip
111
+ sandbox-tests : sandbox-test-go1.5 sandbox-test-go1.6 sandbox-test-go1.7 sandbox-test-go1.8 sandbox-test-go1.9 sandbox-test-go1.10 sandbox-test-go1.11 sandbox-test-go1.12 sandbox-test-go1.13 sandbox-test-go1.14 sandbox-test-go1.15 sandbox-test- gotip
112
112
113
113
sandbox-build-go1.5 :
114
114
docker build -f ./awstesting/sandbox/Dockerfile.test.go1.5 -t " aws-sdk-go-1.5" .
@@ -173,6 +173,20 @@ sandbox-go1.13: sandbox-build-go1.13
173
173
sandbox-test-go1.13 : sandbox-build-go1.13
174
174
docker run -t aws-sdk-go-1.13
175
175
176
+ sandbox-build-go1.14 :
177
+ docker build -f ./awstesting/sandbox/Dockerfile.test.go1.14 -t " aws-sdk-go-1.14" .
178
+ sandbox-go1.14 : sandbox-build-go1.14
179
+ docker run -i -t aws-sdk-go-1.14 bash
180
+ sandbox-test-go1.14 : sandbox-build-go1.14
181
+ docker run -t aws-sdk-go-1.14
182
+
183
+ sandbox-build-go1.15 :
184
+ docker build -f ./awstesting/sandbox/Dockerfile.test.go1.15 -t " aws-sdk-go-1.15" .
185
+ sandbox-go1.15 : sandbox-build-go1.15
186
+ docker run -i -t aws-sdk-go-1.15 bash
187
+ sandbox-test-go1.15 : sandbox-build-go1.15
188
+ docker run -t aws-sdk-go-1.15
189
+
176
190
sandbox-build-gotip :
177
191
@echo " Run make update-aws-golang-tip, if this test fails because missing aws-golang:tip container"
178
192
docker build -f ./awstesting/sandbox/Dockerfile.test.gotip -t " aws-sdk-go-tip" .
Original file line number Diff line number Diff line change
1
+ FROM golang:1.14
2
+
3
+ ENV GOPROXY=direct
4
+
5
+ ADD . /go/src/github.com/aws/aws-sdk-go
6
+
7
+ RUN apt-get update && apt-get install -y --no-install-recommends \
8
+ vim \
9
+ && rm -rf /var/list/apt/lists/*
10
+
11
+ WORKDIR /go/src/github.com/aws/aws-sdk-go
12
+ CMD ["make", "get-deps-verify", "unit"]
Original file line number Diff line number Diff line change
1
+ FROM golang:1.15
2
+
3
+ ENV GOPROXY=direct
4
+
5
+ ADD . /go/src/github.com/aws/aws-sdk-go
6
+
7
+ RUN apt-get update && apt-get install -y --no-install-recommends \
8
+ vim \
9
+ && rm -rf /var/list/apt/lists/*
10
+
11
+ WORKDIR /go/src/github.com/aws/aws-sdk-go
12
+ CMD ["make", "get-deps-verify", "unit"]
You can’t perform that action at this time.
0 commit comments