Skip to content

Commit 8f044b8

Browse files
committed
Bump to Go 1.11.x
Signed-off-by: Sebastiaan van Stijn <[email protected]> (cherry picked from commit 07237e3) Signed-off-by: Sebastiaan van Stijn <[email protected]>
1 parent 0fc64b6 commit 8f044b8

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ environment:
1212
GOPATH: C:\gopath
1313
CGO_ENABLED: 1
1414
matrix:
15-
- GO_VERSION: 1.10
15+
- GO_VERSION: 1.11
1616

1717
before_build:
1818
- choco install -y mingw

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ services:
77
language: go
88

99
go:
10-
- "1.10.x"
10+
- "1.11.x"
1111

1212
go_import_path: github.com/containerd/containerd
1313

contrib/Dockerfile.test

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,19 @@
77
#
88

99
# Install proto3
10-
FROM golang:1.10 AS proto3
10+
FROM golang:1.11 AS proto3
1111
RUN apt-get update && apt-get install -y autoconf automake g++ libtool unzip
1212
COPY script/setup/install-protobuf install-protobuf
1313
RUN ./install-protobuf
1414

1515
# Install runc
16-
FROM golang:1.10 AS runc
16+
FROM golang:1.11 AS runc
1717
RUN apt-get update && apt-get install -y curl libseccomp-dev
1818
COPY vendor.conf /go/src/github.com/containerd/containerd/vendor.conf
1919
COPY script/setup/install-runc install-runc
2020
RUN ./install-runc
2121

22-
FROM golang:1.10
22+
FROM golang:1.11
2323
RUN apt-get update && apt-get install -y btrfs-tools gcc git libseccomp-dev make xfsprogs
2424

2525
COPY --from=proto3 /usr/local/bin/protoc /usr/local/bin/protoc

0 commit comments

Comments
 (0)