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:
parent
2d7337dcd0
commit
908e8b5590
|
@ -3,7 +3,6 @@ dist: xenial
|
||||||
os: linux
|
os: linux
|
||||||
|
|
||||||
go:
|
go:
|
||||||
- "1.13.2"
|
|
||||||
- "1.14.1"
|
- "1.14.1"
|
||||||
|
|
||||||
go_import_path: github.com/letsencrypt/boulder
|
go_import_path: github.com/letsencrypt/boulder
|
||||||
|
|
|
@ -2,7 +2,7 @@ version: '3'
|
||||||
services:
|
services:
|
||||||
boulder:
|
boulder:
|
||||||
# To minimize fetching this should be the same version used below
|
# 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:
|
environment:
|
||||||
FAKE_DNS: 10.77.77.77
|
FAKE_DNS: 10.77.77.77
|
||||||
PKCS11_PROXY_SOCKET: tcp://boulder-hsm:5657
|
PKCS11_PROXY_SOCKET: tcp://boulder-hsm:5657
|
||||||
|
@ -65,7 +65,7 @@ services:
|
||||||
hard: -1
|
hard: -1
|
||||||
bhsm:
|
bhsm:
|
||||||
# To minimize fetching this should be the same version used above
|
# 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:
|
environment:
|
||||||
PKCS11_DAEMON_SOCKET: tcp://0.0.0.0:5657
|
PKCS11_DAEMON_SOCKET: tcp://0.0.0.0:5657
|
||||||
command: /usr/local/bin/pkcs11-daemon /usr/lib/softhsm/libsofthsm2.so
|
command: /usr/local/bin/pkcs11-daemon /usr/lib/softhsm/libsofthsm2.so
|
||||||
|
@ -92,7 +92,7 @@ services:
|
||||||
logging:
|
logging:
|
||||||
driver: none
|
driver: none
|
||||||
netaccess:
|
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:
|
environment:
|
||||||
GO111MODULE: "on"
|
GO111MODULE: "on"
|
||||||
GOFLAGS: "-mod=vendor"
|
GOFLAGS: "-mod=vendor"
|
||||||
|
|
|
@ -4,7 +4,7 @@ cd $(dirname $0)
|
||||||
|
|
||||||
DATESTAMP=$(date +%Y-%m-%d)
|
DATESTAMP=$(date +%Y-%m-%d)
|
||||||
BASE_TAG_NAME="letsencrypt/boulder-tools"
|
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
|
# Build a tagged image for each GO_VERSION
|
||||||
for GO_VERSION in "${GO_VERSIONS[@]}"
|
for GO_VERSION in "${GO_VERSIONS[@]}"
|
||||||
|
|
Loading…
Reference in New Issue