logginghandler/.drone.yml

84 lines
1.2 KiB
YAML
Raw Normal View History

2020-10-13 15:26:40 +02:00
kind: pipeline
name: default
type: docker
golang-image: &golang-image golang:1.17-alpine
gobin-volume: &gobin-volume
name: gobin
path: /go/bin
usr-volume: &usr-volume
name: usr
path: /usr
deps-command: &deps-command apk add build-base git
2020-10-13 15:26:40 +02:00
steps:
- name: tags
image: alpine/git
commands:
- git fetch --tags
2022-01-20 13:14:17 +01:00
- name: install-deps
image: *golang-image
volumes:
- *gobin-volume
- *usr-volume
commands:
- *deps-command
- name: lint
image: *golang-image
volumes:
- *gobin-volume
- *usr-volume
commands:
- make lint
depends_on:
- tags
- install-tools
- name: test
image: *golang-image
volumes:
- *gobin-volume
- *usr-volume
commands:
- make test
depends_on:
- install-tools
- tags
- lint
- name: build
image: *golang-image
volumes:
- *gobin-volume
- *usr-volume
commands:
- make build
depends_on:
- tags
- lint
- test
- install-tools
when:
event:
exclude:
- tag
- name: release
image: *golang-image
volumes:
- *gobin-volume
- *usr-volume
environment:
GITEA_TOKEN:
from_secret: gitea_token
commands:
- make release
depends_on:
- test
- lint
- tags
- install-tools
when:
event:
- tag
volumes:
- name: gobin
temp: {}
- name: usr
temp: {}