Merge pull request #84 from metalmatze/go-1.14-rc

Start testing Go 1.14 with rc0
This commit is contained in:
Matthias Loibl 2020-02-10 16:05:59 +01:00 committed by GitHub
commit 4a1cd85aca
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 20 additions and 1 deletions

View file

@ -42,7 +42,8 @@
build('1.11'),
build('1.12'),
build('1.13') + {depends_on: ["build-1.11", "build-1.12"]},
build('1.13'),
build('1.14-rc') + {depends_on: ["build-1.11", "build-1.12", "build-1.13"]},
golang() {
name: 'generate',

View file

@ -70,8 +70,26 @@ steps:
exclude:
- tag
depends_on:
- gomod
- name: build-1.14-rc
pull: always
image: golang:1.14-rc
commands:
- make build
- make test
- make test-integration
environment:
CGO_ENABLED: 0
GO111MODULE: on
when:
event:
exclude:
- tag
depends_on:
- build-1.11
- build-1.12
- build-1.13
- name: generate
pull: always