gorush/.drone.yml

94 lines
1.8 KiB
YAML

workspace:
base: /go/src
path: github.com/appleboy/gorush
clone:
git:
image: plugins/git
depth: 50
tags: true
pipeline:
build:
image: appleboy/golang-testing
secrets: [ android_test_token, android_api_key ]
commands:
- make deps
- make vet
- make lint
- make build
- make embedmd
- make test-vendor
- make misspell-check
- make fmt-check
- coverage all
codecov:
image: robertstettner/drone-codecov
secrets:
- source: codecov_token
target: plugin_token
files:
- .cover/coverage.txt
when:
event: [ push, pull_request ]
status: [ success ]
release:
image: appleboy/golang-testing
pull: true
environment:
GOPATH: /srv/app
TAGS: netgo
commands:
- make release
when:
event: [ tag ]
branch: [ refs/tags/* ]
publish_latest:
image: plugins/docker
pull: true
repo: ${DRONE_REPO}
tags: [ 'latest' ]
secrets: [ docker_username, docker_password ]
when:
event: [ push ]
branch: [ master ]
local: false
publish_tag:
image: plugins/docker
pull: true
repo: ${DRONE_REPO}
tags: [ '${DRONE_TAG}' ]
secrets: [ docker_username, docker_password ]
group: release
when:
event: [ tag ]
branch: [ refs/tags/* ]
local: false
release_tag:
image: plugins/github-release
secrets: [ github_release_api_key ]
group: release
files:
- dist/release/*
when:
event: [ tag ]
branch: [ refs/tags/* ]
local: false
facebook:
image: appleboy/drone-facebook
secrets: [ fb_page_token, fb_verify_token ]
pull: true
to: 1234973386524610
when:
status: [ changed, failure ]
services:
redis:
image: redis:alpine