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
2019-10-13 15:12:54 +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
2019-10-13 15:12:54 +05:00
- name : test
2020-04-25 13:41:00 +05:00
image : golang:1.14.2-alpine
2019-10-13 15:12:54 +05:00
environment :
CGO_ENABLED : 0
commands :
- go test ./...
2019-10-16 23:32:21 +05:00
depends_on :
- notify-start
2019-10-13 15:12:54 +05:00
2019-10-12 08:25:07 +05:00
- name : docker
image : plugins/docker
2019-10-13 15:12:54 +05:00
when :
branch :
master
2019-10-12 08:25:07 +05:00
settings :
username :
from_secret : dockerhub_user
password :
from_secret : dockerhub_password
2019-10-13 15:14:19 +05:00
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