Test with Go 1.14.1 only. (#4785)

Now that we've deployed Go 1.14.1 in prod, we can remove 1.13.2 from our
test matrix.
This commit is contained in:
Jacob Hoffman-Andrews 2020-04-16 16:57:05 -07:00 committed by GitHub
parent 2d7337dcd0
commit 908e8b5590
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 5 deletions

View File

@ -3,7 +3,6 @@ dist: xenial
os: linux
go:
- "1.13.2"
- "1.14.1"
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.13.2}:2020-04-08
image: letsencrypt/boulder-tools-go${TRAVIS_GO_VERSION:-1.14.1}:2020-04-08
environment:
FAKE_DNS: 10.77.77.77
PKCS11_PROXY_SOCKET: tcp://boulder-hsm:5657
@ -65,7 +65,7 @@ services:
hard: -1
bhsm:
# To minimize fetching this should be the same version used above
image: letsencrypt/boulder-tools-go${TRAVIS_GO_VERSION:-1.13.2}:2020-04-08
image: letsencrypt/boulder-tools-go${TRAVIS_GO_VERSION:-1.14.1}:2020-04-08
environment:
PKCS11_DAEMON_SOCKET: tcp://0.0.0.0:5657
command: /usr/local/bin/pkcs11-daemon /usr/lib/softhsm/libsofthsm2.so
@ -92,7 +92,7 @@ services:
logging:
driver: none
netaccess:
image: letsencrypt/boulder-tools-go${TRAVIS_GO_VERSION:-1.13.2}:2020-04-08
image: letsencrypt/boulder-tools-go${TRAVIS_GO_VERSION:-1.14.1}:2020-04-08
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.13.2" "1.14.1" )
GO_VERSIONS=( "1.14.1" )
# Build a tagged image for each GO_VERSION
for GO_VERSION in "${GO_VERSIONS[@]}"