gitignore and Drone configuration updates.
This commit is contained in:
parent
89bc9818b7
commit
c010875aa3
39
.drone.yml
39
.drone.yml
@ -4,25 +4,12 @@ type: docker
|
|||||||
name: test-and-lint
|
name: test-and-lint
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: notify-start
|
|
||||||
image: pztrn/discordrone
|
|
||||||
when:
|
|
||||||
instance: ci.dev.pztrn.name
|
|
||||||
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-1.14
|
- name: test-1.14
|
||||||
image: golang:1.14.4-alpine
|
image: golang:1.14.4-alpine
|
||||||
@ -30,8 +17,6 @@ steps:
|
|||||||
CGO_ENABLED: "0"
|
CGO_ENABLED: "0"
|
||||||
commands:
|
commands:
|
||||||
- go test -cover -test.v .
|
- go test -cover -test.v .
|
||||||
depends_on:
|
|
||||||
- notify-start
|
|
||||||
|
|
||||||
- name: test-1.13
|
- name: test-1.13
|
||||||
image: golang:1.13.12-alpine
|
image: golang:1.13.12-alpine
|
||||||
@ -39,28 +24,4 @@ steps:
|
|||||||
CGO_ENABLED: "0"
|
CGO_ENABLED: "0"
|
||||||
commands:
|
commands:
|
||||||
- go test -cover -test.v .
|
- go test -cover -test.v .
|
||||||
depends_on:
|
|
||||||
- notify-start
|
|
||||||
|
|
||||||
- name: notify-end
|
|
||||||
when:
|
|
||||||
instance: ci.dev.pztrn.name
|
|
||||||
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}}** pipeline completed in {{since build.startedint}}.
|
|
||||||
{{ else }}
|
|
||||||
**{{repo.name}}#{{build.number}}@{{commit.sha}}** failed. See {{build.link}}.
|
|
||||||
{{/success}}"
|
|
||||||
depends_on:
|
|
||||||
- lint
|
|
||||||
- test-1.13
|
|
||||||
- test-1.14
|
|
||||||
|
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1,3 @@
|
|||||||
|
.idea
|
||||||
|
.vscode
|
||||||
*DS_Store*
|
*DS_Store*
|
||||||
|
Loading…
Reference in New Issue
Block a user