Test for 3 latest Go versions in CI

This commit is contained in:
Matthias Loibl 2019-11-10 13:44:10 +01:00
parent 7b564ae8b5
commit f1b13bd42d
No known key found for this signature in database
GPG key ID: 78A796CA74CA38BA
2 changed files with 155 additions and 50 deletions

View file

@ -1,10 +1,7 @@
{
_config+:: {
golang: 'golang:1.13',
},
[
{
kind: 'pipeline',
name: 'build',
name: 'go%s' % version,
platform: {
os: 'linux',
arch: 'amd64',
@ -12,7 +9,7 @@
local golang = {
name: 'golang',
image: $._config.golang,
image: 'golang:%s' % version,
pull: 'always',
environment: {
CGO_ENABLED: '0',
@ -52,4 +49,6 @@
],
},
],
}
}
for version in ['1.13', '1.12', '1.11']
]

View file

@ -1,6 +1,6 @@
---
kind: pipeline
name: build
name: go1.13
platform:
os: linux
@ -51,4 +51,110 @@ steps:
exclude:
- tag
---
kind: pipeline
name: go1.12
platform:
os: linux
arch: amd64
steps:
- name: gomod
pull: always
image: golang:1.12
commands:
- go mod vendor
- git diff --exit-code
environment:
CGO_ENABLED: 0
GO111MODULE: on
when:
event:
exclude:
- tag
- name: build
pull: always
image: golang:1.12
commands:
- make build
- make test
- make test-integration
environment:
CGO_ENABLED: 0
GO111MODULE: on
when:
event:
exclude:
- tag
- name: generate
pull: always
image: golang:1.12
commands:
- make check-license
- make generate
- git diff --exit-code
environment:
CGO_ENABLED: 0
GO111MODULE: on
when:
event:
exclude:
- tag
---
kind: pipeline
name: go1.11
platform:
os: linux
arch: amd64
steps:
- name: gomod
pull: always
image: golang:1.11
commands:
- go mod vendor
- git diff --exit-code
environment:
CGO_ENABLED: 0
GO111MODULE: on
when:
event:
exclude:
- tag
- name: build
pull: always
image: golang:1.11
commands:
- make build
- make test
- make test-integration
environment:
CGO_ENABLED: 0
GO111MODULE: on
when:
event:
exclude:
- tag
- name: generate
pull: always
image: golang:1.11
commands:
- make check-license
- make generate
- git diff --exit-code
environment:
CGO_ENABLED: 0
GO111MODULE: on
when:
event:
exclude:
- tag
...