jsonnet-bundler/.drone.yml

100 lines
1.4 KiB
YAML
Raw Normal View History

---
kind: pipeline
name: default
platform:
os: linux
arch: amd64
steps:
- name: gomod
pull: always
image: golang:latest
commands:
- go mod vendor
- git diff --exit-code
environment:
CGO_ENABLED: 0
GO111MODULE: on
when:
event:
exclude:
- tag
- name: build-1.11
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: build-1.12
2019-11-10 13:44:10 +01:00
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: build-1.13
2019-11-10 13:44:10 +01:00
pull: always
image: golang:1.13
2019-11-10 13:44:10 +01:00
commands:
- make build
- make test
- make test-integration
environment:
CGO_ENABLED: 0
GO111MODULE: on
when:
event:
exclude:
- tag
2020-02-10 10:17:29 +01:00
- 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
2019-11-10 13:44:10 +01:00
- name: generate
pull: always
image: golang:latest
2019-11-10 13:44:10 +01:00
commands:
- make check-license
- make generate
- git diff --exit-code
environment:
CGO_ENABLED: 0
GO111MODULE: on
when:
event:
exclude:
- tag
...