Skip to content

Commit d1d9269

Browse files
authored
Switch to testing only on go1.15 (letsencrypt#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.
1 parent 4d72f1f commit d1d9269

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ os: linux
44

55
go:
66
- "1.15"
7-
- "1.14.5"
87

98
go_import_path: github.com/letsencrypt/boulder
109

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: '3'
22
services:
33
boulder:
44
# To minimize fetching this should be the same version used below
5-
image: letsencrypt/boulder-tools-go${TRAVIS_GO_VERSION:-1.14.5}:2020-08-12
5+
image: letsencrypt/boulder-tools-go${TRAVIS_GO_VERSION:-1.15}:2020-08-12
66
environment:
77
- FAKE_DNS=10.77.77.77
88
- BOULDER_CONFIG_DIR=test/config
@@ -76,7 +76,7 @@ services:
7676
logging:
7777
driver: none
7878
netaccess:
79-
image: letsencrypt/boulder-tools-go${TRAVIS_GO_VERSION:-1.14.5}:2020-08-12
79+
image: letsencrypt/boulder-tools-go${TRAVIS_GO_VERSION:-1.15}:2020-08-12
8080
environment:
8181
GO111MODULE: "on"
8282
GOFLAGS: "-mod=vendor"

test/boulder-tools/tag_and_upload.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ cd $(dirname $0)
44

55
DATESTAMP=$(date +%Y-%m-%d)
66
BASE_TAG_NAME="letsencrypt/boulder-tools"
7-
GO_VERSIONS=( "1.15" "1.14.5" )
7+
GO_VERSIONS=( "1.15" )
88

99
# Build a tagged image for each GO_VERSION
1010
for GO_VERSION in "${GO_VERSIONS[@]}"

0 commit comments

Comments
 (0)