Switch to testing only on go1.15 (#5022)
Now that our prod deployment has updated to using go1.15, it is no longer be necessary to duplicate our tests across two different go versions.
This commit is contained in:
parent
4d72f1f60e
commit
d1d9269530
|
|
@ -4,7 +4,6 @@ os: linux
|
|||
|
||||
go:
|
||||
- "1.15"
|
||||
- "1.14.5"
|
||||
|
||||
go_import_path: github.com/letsencrypt/boulder
|
||||
|
||||
|
|
|
|||
|
|
@ -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-12
|
||||
image: letsencrypt/boulder-tools-go${TRAVIS_GO_VERSION:-1.15}: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-12
|
||||
image: letsencrypt/boulder-tools-go${TRAVIS_GO_VERSION:-1.15}:2020-08-12
|
||||
environment:
|
||||
GO111MODULE: "on"
|
||||
GOFLAGS: "-mod=vendor"
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ cd $(dirname $0)
|
|||
|
||||
DATESTAMP=$(date +%Y-%m-%d)
|
||||
BASE_TAG_NAME="letsencrypt/boulder-tools"
|
||||
GO_VERSIONS=( "1.15" "1.14.5" )
|
||||
GO_VERSIONS=( "1.15" )
|
||||
|
||||
# Build a tagged image for each GO_VERSION
|
||||
for GO_VERSION in "${GO_VERSIONS[@]}"
|
||||
|
|
|
|||
Loading…
Reference in New Issue