From d873e01fa8adaf3a4f8236188383fe6ecbc76b9f Mon Sep 17 00:00:00 2001 From: Aaron Gable Date: Mon, 10 Aug 2020 11:24:32 -0700 Subject: [PATCH] Update to go1.15rc2 for tests (#5013) Go 1.15rc2 was released today. The diff from rc1 only includes one change to the crypto/ package, but worth upgrading just to be ready for the official 1.15 stable release. --- .travis.yml | 2 +- docker-compose.yml | 4 ++-- test/boulder-tools/tag_and_upload.sh | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index b1414f81a..6e13eb77d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,7 @@ dist: xenial os: linux go: - - "1.15rc1" + - "1.15rc2" - "1.14.5" go_import_path: github.com/letsencrypt/boulder diff --git a/docker-compose.yml b/docker-compose.yml index 3e08a99a2..73e706063 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,7 +2,7 @@ version: '3' services: boulder: # To minimize fetching this should be the same version used below - image: letsencrypt/boulder-tools-go${TRAVIS_GO_VERSION:-1.14.5}:2020-07-29 + image: letsencrypt/boulder-tools-go${TRAVIS_GO_VERSION:-1.14.5}:2020-08-07 environment: - FAKE_DNS=10.77.77.77 - BOULDER_CONFIG_DIR=test/config @@ -76,7 +76,7 @@ services: logging: driver: none netaccess: - image: letsencrypt/boulder-tools-go${TRAVIS_GO_VERSION:-1.14.5}:2020-07-29 + image: letsencrypt/boulder-tools-go${TRAVIS_GO_VERSION:-1.14.5}:2020-08-07 environment: GO111MODULE: "on" GOFLAGS: "-mod=vendor" diff --git a/test/boulder-tools/tag_and_upload.sh b/test/boulder-tools/tag_and_upload.sh index f74d00a41..515d75668 100755 --- a/test/boulder-tools/tag_and_upload.sh +++ b/test/boulder-tools/tag_and_upload.sh @@ -4,7 +4,7 @@ cd $(dirname $0) DATESTAMP=$(date +%Y-%m-%d) BASE_TAG_NAME="letsencrypt/boulder-tools" -GO_VERSIONS=( "1.15rc1" "1.14.5" ) +GO_VERSIONS=( "1.15rc2" "1.14.5" ) # Build a tagged image for each GO_VERSION for GO_VERSION in "${GO_VERSIONS[@]}"