From b9dd06ad851bbf9d37ce9a298925a488af248229 Mon Sep 17 00:00:00 2001 From: Daniel McCarney Date: Mon, 11 Jun 2018 18:55:26 -0400 Subject: [PATCH] CI/Dev: Add Go 1.10.3 to build matrix. (#3751) --- .travis.yml | 1 + test/boulder-tools/tag_and_upload.sh | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 96bee8e01..ec73f2e2d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,6 +2,7 @@ language: go go: - "1.10.2" + - "1.10.3" go_import_path: github.com/letsencrypt/boulder diff --git a/test/boulder-tools/tag_and_upload.sh b/test/boulder-tools/tag_and_upload.sh index c3bd8a03d..e2ff19cda 100755 --- a/test/boulder-tools/tag_and_upload.sh +++ b/test/boulder-tools/tag_and_upload.sh @@ -4,7 +4,7 @@ cd $(dirname $0) DATESTAMP=$(date +%Y-%m-%d) BASE_TAG_NAME="letsencrypt/boulder-tools" -GO_VERSIONS=( "1.10.2" ) +GO_VERSIONS=( "1.10.2" "1.10.3" ) # Build a tagged image for each GO_VERSION for GO_VERSION in "${GO_VERSIONS[@]}"