add support for Go 1.15

This commit is contained in:
Marten Seemann
2020-08-13 13:21:53 +07:00
parent 0711119b96
commit 125318d9c9
13 changed files with 175 additions and 4 deletions

View File

@@ -5,7 +5,13 @@ executors:
- image: "circleci/golang:1.14"
environment:
runrace: true
test-go115:
docker:
- image: "circleci/golang:1.15"
environment:
runrace: true
GODEBUG: x509ignoreCN=0
jobs:
"test": &test
executor: test-go114
@@ -40,8 +46,12 @@ jobs:
command: ginkgo -v -randomizeAllSpecs -trace integrationtests/self -- -qlog -metrics
go114:
<<: *test
go115:
<<: *test
executor: test-go115
workflows:
workflow:
jobs:
- go114
- go115