From 29a431f1fc3925619f061645559f69643dcc2841 Mon Sep 17 00:00:00 2001 From: Casey Callendrello Date: Wed, 29 May 2019 17:47:50 +0200 Subject: [PATCH] Release: bump go to v1.12 --- .travis.yml | 6 +++--- scripts/release.sh | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 68e6d4c0..e6b5e932 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,8 +3,8 @@ sudo: required dist: trusty go: - - 1.10.x - 1.11.x + - 1.12.x env: global: @@ -22,10 +22,10 @@ matrix: include: - os: windows env: TARGET=amd64 - go: 1.10.x + go: 1.11.x - os: windows env: TARGET=amd64 - go: 1.11.x + go: 1.12.x install: - go get github.com/onsi/ginkgo/ginkgo diff --git a/scripts/release.sh b/scripts/release.sh index 5b9d40d1..1db4b8e0 100755 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -16,7 +16,7 @@ rm -Rf ${SRC_DIR}/${RELEASE_DIR} mkdir -p ${SRC_DIR}/${RELEASE_DIR} mkdir -p ${OUTPUT_DIR} -$DOCKER run -v ${SRC_DIR}:/go/src/github.com/containernetworking/plugins --rm golang:1.10-alpine \ +$DOCKER run -ti -v ${SRC_DIR}:/go/src/github.com/containernetworking/plugins --rm golang:1.12-alpine \ /bin/sh -xe -c "\ apk --no-cache add bash tar; cd /go/src/github.com/containernetworking/plugins; umask 0022;