Update to stable go1.15 (#5021)

This updates our test infrastructure from using go1.15rc2 to the
newly-released go1.15 stable version.
This commit is contained in:
Aaron Gable 2020-08-17 12:32:20 -07:00 committed by GitHub
parent 32d56ae1e6
commit 316ffd6241
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View File

@ -3,7 +3,7 @@ dist: xenial
os: linux
go:
- "1.15rc2"
- "1.15"
- "1.14.5"
go_import_path: github.com/letsencrypt/boulder

View File

@ -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-08-07
image: letsencrypt/boulder-tools-go${TRAVIS_GO_VERSION:-1.14.5}:2020-08-12
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-08-07
image: letsencrypt/boulder-tools-go${TRAVIS_GO_VERSION:-1.14.5}:2020-08-12
environment:
GO111MODULE: "on"
GOFLAGS: "-mod=vendor"

View File

@ -4,7 +4,7 @@ cd $(dirname $0)
DATESTAMP=$(date +%Y-%m-%d)
BASE_TAG_NAME="letsencrypt/boulder-tools"
GO_VERSIONS=( "1.15rc2" "1.14.5" )
GO_VERSIONS=( "1.15" "1.14.5" )
# Build a tagged image for each GO_VERSION
for GO_VERSION in "${GO_VERSIONS[@]}"