giredore/.drone.yml

68 lines
1.6 KiB
YAML
Raw Normal View History

2019-10-07 21:51:45 +05:00
---
kind: pipeline
type: docker
name: build
steps:
2019-10-12 08:25:07 +05:00
- name: notify-start
2019-10-16 23:32:21 +05:00
image: pztrn/discordrone
2019-10-12 08:25:07 +05:00
settings:
webhook_id:
from_secret: discord_webhook_id
webhook_token:
from_secret: discord_webhook_secret
2019-10-16 23:32:21 +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).'
2019-10-12 08:25:07 +05:00
- name: lint
image: golangci/golangci-lint:latest
environment:
CGO_ENABLED: 0
commands:
- golangci-lint run
2019-10-16 23:32:21 +05:00
depends_on:
- notify-start
- name: test
image: golang:1.14.2-alpine
environment:
CGO_ENABLED: 0
commands:
- go test ./...
2019-10-16 23:32:21 +05:00
depends_on:
- notify-start
2019-10-12 08:25:07 +05:00
- name: docker
image: plugins/docker
when:
branch:
master
2019-10-12 08:25:07 +05:00
settings:
username:
from_secret: dockerhub_user
password:
from_secret: dockerhub_password
repo: pztrn/giredore
2019-10-12 08:25:07 +05:00
auto_tag: true
2019-10-16 23:32:21 +05:00
depends_on:
- lint
- test
2019-10-12 08:25:07 +05:00
- name: notify-end
when:
status:
- success
- failure
2019-10-16 23:32:21 +05:00
image: pztrn/discordrone
2019-10-12 08:25:07 +05:00
settings:
webhook_id:
from_secret: discord_webhook_id
webhook_token:
from_secret: discord_webhook_secret
message: "
{{#success build.status}}
2019-10-16 23:32:21 +05:00
**{{repo.name}}#{{build.number}}@{{commit.sha}}** built in {{since build.startedint}} and pushed to hub.docker.com.
2019-10-12 08:25:07 +05:00
{{ else }}
2019-10-16 23:32:21 +05:00
**{{repo.name}}#{{build.number}}@{{commit.sha}}** failed. See {{build.link}}.
{{/success}}"
depends_on:
- docker