Drone configuration fix.
This commit is contained in:
parent
a601ea5ab4
commit
c6c3e2e76f
35
.drone.yml
35
.drone.yml
@ -4,23 +4,12 @@ type: docker
|
|||||||
name: build
|
name: build
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: notify-start
|
|
||||||
image: pztrn/discordrone
|
|
||||||
settings:
|
|
||||||
webhook_id:
|
|
||||||
from_secret: discord_webhook_id
|
|
||||||
webhook_token:
|
|
||||||
from_secret: discord_webhook_secret
|
|
||||||
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
|
- name: lint
|
||||||
image: golangci/golangci-lint:latest
|
image: golangci/golangci-lint:latest
|
||||||
environment:
|
environment:
|
||||||
CGO_ENABLED: 0
|
CGO_ENABLED: 0
|
||||||
commands:
|
commands:
|
||||||
- golangci-lint run
|
- golangci-lint run
|
||||||
depends_on:
|
|
||||||
- notify-start
|
|
||||||
|
|
||||||
- name: test
|
- name: test
|
||||||
image: golang:1.13.5-alpine
|
image: golang:1.13.5-alpine
|
||||||
@ -28,8 +17,6 @@ steps:
|
|||||||
CGO_ENABLED: 0
|
CGO_ENABLED: 0
|
||||||
commands:
|
commands:
|
||||||
- go test ./...
|
- go test ./...
|
||||||
depends_on:
|
|
||||||
- notify-start
|
|
||||||
|
|
||||||
- name: docker
|
- name: docker
|
||||||
image: plugins/docker
|
image: plugins/docker
|
||||||
@ -45,25 +32,3 @@ steps:
|
|||||||
depends_on:
|
depends_on:
|
||||||
- lint
|
- lint
|
||||||
- test
|
- test
|
||||||
|
|
||||||
- name: notify-end
|
|
||||||
when:
|
|
||||||
status:
|
|
||||||
- success
|
|
||||||
- failure
|
|
||||||
image: pztrn/discordrone
|
|
||||||
settings:
|
|
||||||
webhook_id:
|
|
||||||
from_secret: discord_webhook_id
|
|
||||||
webhook_token:
|
|
||||||
from_secret: discord_webhook_secret
|
|
||||||
message: "
|
|
||||||
{{#success build.status}}
|
|
||||||
**{{repo.name}}#{{build.number}}@{{commit.sha}}** built in {{since build.startedint}}.
|
|
||||||
{{ else }}
|
|
||||||
**{{repo.name}}#{{build.number}}@{{commit.sha}}** failed. See {{build.link}}.
|
|
||||||
{{/success}}"
|
|
||||||
depends_on:
|
|
||||||
- lint
|
|
||||||
- test
|
|
||||||
- docker
|
|
||||||
|
Loading…
Reference in New Issue
Block a user