File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ environment:
1313 GOPATH : C:\gopath
1414 CGO_ENABLED : 1
1515 matrix :
16- - GO_VERSION : 1.12.17
16+ - GO_VERSION : 1.13.8
1717
1818before_build :
1919 - choco install -y mingw --version 5.3.0
Original file line number Diff line number Diff line change 1010- linux
1111
1212go :
13- - " 1.12.17 "
13+ - " 1.13.8 "
1414
1515env :
16- - TRAVIS_GOOS=linux TEST_RUNTIME=io.containerd.runc.v1 TRAVIS_CGO_ENABLED=1 TRAVIS_DISTRO=bionic
17- - TRAVIS_GOOS=linux TEST_RUNTIME=io.containerd.runc.v2 TRAVIS_CGO_ENABLED=1 TRAVIS_DISTRO=bionic TRAVIS_RELEASE=yes
18- - TRAVIS_GOOS=linux TEST_RUNTIME=io.containerd.runtime.v1.linux TRAVIS_CGO_ENABLED=1 TRAVIS_DISTRO=bionic
19- - TRAVIS_GOOS=darwin TRAVIS_CGO_ENABLED=0
16+ - TRAVIS_GOOS=linux TEST_RUNTIME=io.containerd.runc.v1 TRAVIS_CGO_ENABLED=1 TRAVIS_DISTRO=bionic GOPROXY=direct
17+ - TRAVIS_GOOS=linux TEST_RUNTIME=io.containerd.runc.v2 TRAVIS_CGO_ENABLED=1 TRAVIS_DISTRO=bionic TRAVIS_RELEASE=yes GOPROXY=direct
18+ - TRAVIS_GOOS=linux TEST_RUNTIME=io.containerd.runtime.v1.linux TRAVIS_CGO_ENABLED=1 TRAVIS_DISTRO=bionic GOPROXY=direct
19+ - TRAVIS_GOOS=darwin TRAVIS_CGO_ENABLED=0 GOPROXY=direct
2020
2121matrix :
2222 include :
2323 # Skip testing previous LTS (Xenial / Ubuntu 16.04 LTS) on pull requests
2424 - if : type != pull_request
2525 os : linux
2626 dist : xenial
27- env : TRAVIS_GOOS=linux TEST_RUNTIME=io.containerd.runc.v2 TRAVIS_CGO_ENABLED=1 TRAVIS_DISTRO=xenial
27+ env : TRAVIS_GOOS=linux TEST_RUNTIME=io.containerd.runc.v2 TRAVIS_CGO_ENABLED=1 TRAVIS_DISTRO=xenial GOPROXY=direct
2828
2929go_import_path : github.com/containerd/containerd
3030
@@ -73,7 +73,7 @@ script:
7373 - DCO_VERBOSITY=-q ../project/script/validate/dco
7474 - ../project/script/validate/fileheader ../project/
7575 - travis_wait ../project/script/validate/vendor
76- - GOOS=linux script/setup/install-dev-tools
76+ - GOOS=linux GO111MODULE=off script/setup/install-dev-tools
7777 - go build -i .
7878 - make check
7979 - if [ "$GOOS" = "linux" ]; then make check-protos check-api-descriptors; fi
Original file line number Diff line number Diff line change 66# 3.) $ make binaries install test
77#
88
9- ARG GOLANG_VERSION=1.12.17
9+ ARG GOLANG_VERSION=1.13.8
1010
1111FROM golang:${GOLANG_VERSION} AS golang-base
1212RUN mkdir -p /go/src/github.com/containerd/containerd
@@ -34,6 +34,8 @@ RUN apt-get update && apt-get install -y \
3434
3535COPY vendor.conf vendor.conf
3636COPY script/setup/install-runc install-runc
37+ ARG GOPROXY=direct
38+ ARG GO111MODULE=off
3739RUN ./install-runc
3840
3941FROM golang-base AS dev
You can’t perform that action at this time.
0 commit comments