2019-04-28 10:51:06 +00:00
|
|
|
kind: pipeline
|
|
|
|
name: default
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: test
|
2019-09-11 00:14:21 +00:00
|
|
|
image: archlinux/base
|
2019-04-28 10:51:06 +00:00
|
|
|
environment:
|
2019-04-28 16:00:57 +00:00
|
|
|
ARN_ROOT: /drone/src
|
2019-04-28 10:51:06 +00:00
|
|
|
commands:
|
2019-09-11 00:14:21 +00:00
|
|
|
- pacman -S go nodejs npm
|
2019-04-28 10:51:06 +00:00
|
|
|
- go version
|
2019-09-05 23:35:35 +00:00
|
|
|
- npm install -g typescript
|
2019-09-11 00:04:32 +00:00
|
|
|
- go mod download
|
2019-09-05 23:35:35 +00:00
|
|
|
- make tools
|
|
|
|
- make assets
|
|
|
|
- make server
|
2019-09-11 00:04:32 +00:00
|
|
|
- curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $(go env GOPATH)/bin v1.18.0
|
2019-06-05 06:45:54 +00:00
|
|
|
- golangci-lint run
|
2019-09-11 00:04:32 +00:00
|
|
|
- make db
|
2019-04-28 16:00:57 +00:00
|
|
|
- go test -v -coverprofile=coverage.txt .
|
2019-04-28 13:44:54 +00:00
|
|
|
# - go mod download
|
|
|
|
# - make tools
|
|
|
|
# - curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.34.0/install.sh | bash
|
|
|
|
# - nvm install node
|
|
|
|
# - npm install -g typescript
|
|
|
|
# - tsc
|
|
|
|
# - pack
|
|
|
|
# - make server
|
|
|
|
# - make bots jobs patches
|
|
|
|
# - git clone --depth=1 https://github.com/animenotifier/database ~/.aero/db/arn
|
|
|
|
# - go test -v -coverprofile=coverage.txt ./...
|
2019-04-28 10:51:06 +00:00
|
|
|
|
|
|
|
- name: coverage
|
|
|
|
image: plugins/codecov
|
|
|
|
settings:
|
|
|
|
token:
|
|
|
|
from_secret: codecov-token
|
|
|
|
files:
|
|
|
|
- coverage.txt
|
|
|
|
|
|
|
|
- name: discord
|
|
|
|
image: appleboy/drone-discord
|
|
|
|
when:
|
|
|
|
status:
|
|
|
|
- failure
|
|
|
|
settings:
|
|
|
|
webhook_id:
|
|
|
|
from_secret: discord-id
|
|
|
|
webhook_token:
|
|
|
|
from_secret: discord-token
|