flagger/.drone.yml

55 lines
1.4 KiB
YAML
Raw Normal View History

---
kind: pipeline
type: docker
name: build
steps:
- name: notify-start
2019-10-16 20:33:36 +05:00
image: pztrn/discordrone
settings:
webhook_id:
from_secret: discord_webhook_id
webhook_token:
from_secret: discord_webhook_secret
2019-10-16 20:49:28 +05:00
message: 'Starting building **{{repo.name}}#{{build.number}}@{{commit.sha}}** @ {{datetime build.started "02-Jan-2006 15:04:05 MST" "Asia/Yekaterinburg"}} (See {{build.link}} for logs).'
- name: lint
image: golangci/golangci-lint:latest
environment:
CGO_ENABLED: 0
commands:
- golangci-lint run
- name: test-1.13
2019-12-22 01:26:25 +05:00
image: golang:1.13.5-alpine
environment:
CGO_ENABLED: 0
commands:
- go test -cover -test.v .
2019-12-22 01:26:25 +05:00
- name: test-1.12
2019-12-22 01:26:25 +05:00
image: golang:1.12.14-alpine
environment:
CGO_ENABLED: 0
GO111MODULE: on
commands:
- go test -cover -test.v .
- name: notify-end
when:
status:
2019-12-22 01:26:25 +05:00
- success
- failure
2019-10-16 20:33:36 +05:00
image: pztrn/discordrone
settings:
webhook_id:
from_secret: discord_webhook_id
webhook_token:
from_secret: discord_webhook_secret
message: "
{{#success build.status}}
2019-12-22 01:26:25 +05:00
**{{repo.name}}#{{build.number}}@{{commit.sha}}** pipeline completed in {{since build.startedint}}.
{{ else }}
2019-12-22 01:26:25 +05:00
**{{repo.name}}#{{build.number}}@{{commit.sha}}** failed. See {{build.link}}.
{{/success}}"