ci: test against go1.17

This commit is contained in:
Daniel Nephin 2021-10-20 14:37:29 -04:00
parent 53295c8f58
commit 49faed6efe
4 changed files with 10 additions and 7 deletions

3
.changelog/11364.txt Normal file
View File

@ -0,0 +1,3 @@
```release-note:deprecation
tls: With the upgrade to Go 1.17, the ordering of `tls_cipher_suites` will no longer be honored, and `tls_prefer_server_cipher_suites` is now ignored.
```

View File

@ -15,7 +15,7 @@ references:
images:
# When updating the Go version, remember to also update the versions in the
# workflows section for go-test-lib jobs.
go: &GOLANG_IMAGE docker.mirror.hashicorp.services/circleci/golang:1.16.7
go: &GOLANG_IMAGE docker.mirror.hashicorp.services/circleci/golang:1.17.2
ember: &EMBER_IMAGE docker.mirror.hashicorp.services/circleci/node:14-browsers
paths:
@ -1017,9 +1017,9 @@ workflows:
go-version: "1.16"
requires: [dev-build]
- go-test-lib:
name: "go-test-api go1.15"
name: "go-test-api go1.17"
path: api
go-version: "1.15"
go-version: "1.17"
requires: [dev-build]
- go-test-lib:
name: "go-test-sdk go1.16"
@ -1027,9 +1027,9 @@ workflows:
go-version: "1.16"
<<: *filter-ignore-non-go-branches
- go-test-lib:
name: "go-test-sdk go1.15"
name: "go-test-sdk go1.17"
path: sdk
go-version: "1.15"
go-version: "1.17"
<<: *filter-ignore-non-go-branches
- go-test-race: *filter-ignore-non-go-branches
- go-test-32bit: *filter-ignore-non-go-branches

View File

@ -1,4 +1,4 @@
ARG GOLANG_VERSION=1.16.7
ARG GOLANG_VERSION=1.17.2
FROM golang:${GOLANG_VERSION}
ARG GOTOOLS="github.com/elazarl/go-bindata-assetfs/... \

View File

@ -1,6 +1,6 @@
FROM travisci/ci-garnet:packer-1512502276-986baf0
ENV GOLANG_VERSION 1.16.7
ENV GOLANG_VERSION 1.17.2
RUN mkdir -p /home/travis/go && chown -R travis /home/travis/go