Drone fixes.
This commit is contained in:
parent
888eaf92e1
commit
389c15f1f7
53
.drone.yml
53
.drone.yml
@ -4,76 +4,33 @@ 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 testing, benchmarking and linting for **{{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:v1.43.0
|
||||||
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.17.3-alpine
|
||||||
environment:
|
environment:
|
||||||
CGO_ENABLED: 0
|
CGO_ENABLED: 0
|
||||||
commands:
|
commands:
|
||||||
- go test -test.v ./...
|
- go test -test.v ./...
|
||||||
depends_on:
|
|
||||||
- notify-start
|
|
||||||
|
|
||||||
- name: test-race
|
- name: test-race
|
||||||
image: golang:1.13.5-stretch
|
image: golang:1.17.3-stretch
|
||||||
commands:
|
commands:
|
||||||
- go test -race -test.v ./...
|
- go test -race -test.v ./...
|
||||||
depends_on:
|
|
||||||
- notify-start
|
|
||||||
|
|
||||||
- name: benchmark
|
- name: benchmark
|
||||||
image: golang:1.13.5-alpine
|
image: golang:1.17.3-alpine
|
||||||
environment:
|
environment:
|
||||||
CGO_ENABLED: 0
|
CGO_ENABLED: 0
|
||||||
commands:
|
commands:
|
||||||
- go test -benchmem -run=^$ go.dev.pztrn.name/valiwork -bench .
|
- go test -benchmem -run=^$ go.dev.pztrn.name/valiwork -bench .
|
||||||
depends_on:
|
|
||||||
- notify-start
|
|
||||||
|
|
||||||
- name: benchmark-race
|
- name: benchmark-race
|
||||||
image: golang:1.13.5-stretch
|
image: golang:1.17.3-stretch
|
||||||
commands:
|
commands:
|
||||||
- go test -benchmem -run=^$ go.dev.pztrn.name/valiwork -race -bench .
|
- go test -benchmem -run=^$ go.dev.pztrn.name/valiwork -race -bench .
|
||||||
depends_on:
|
|
||||||
- notify-start
|
|
||||||
|
|
||||||
- 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}}** tested, benchmarked and linted successfully.
|
|
||||||
{{ else }}
|
|
||||||
**{{repo.name}}#{{build.number}}@{{commit.sha}}** failed. See {{build.link}}.
|
|
||||||
{{/success}}"
|
|
||||||
depends_on:
|
|
||||||
- benchmark
|
|
||||||
- benchmark-race
|
|
||||||
- lint
|
|
||||||
- test
|
|
||||||
- test-race
|
|
||||||
|
1
.gitignore
vendored
1
.gitignore
vendored
@ -1 +1,2 @@
|
|||||||
.idea
|
.idea
|
||||||
|
*DS_Store*
|
||||||
|
Loading…
Reference in New Issue
Block a user