wg-quicker/.drone.yml
Marvin Steadfast c694b55e91
Some checks failed
continuous-integration/drone/push Build is failing
continuous-integration/drone/tag Build is failing
homebrew
2021-01-25 11:32:38 +01:00

77 lines
1.5 KiB
YAML

---
kind: pipeline
name: default
steps:
- name: tags
image: alpine/git
commands:
- git fetch --tags
- name: submodules
image: alpine/git
commands:
- git submodule init
- git submodule update
- name: go-bindata
image: golang:latest
commands:
- (cd /tmp; go get -u github.com/go-bindata/go-bindata/...)
- go-bindata -pkg assets -o assets/bindata.go -nomemcopy /bin/true
- name: lint
image: golangci/golangci-lint:latest
commands:
- make lint
depends_on:
- go-bindata
- name: test
image: golang:latest
commands:
- make test
depends_on:
- go-bindata
- name: clean
image: golang:latest
commands:
- make clean
- git checkout -- .
depends_on:
- lint
- test
- name: build
image: goreleaser/goreleaser:latest
commands:
- (cd /tmp; go get -u github.com/go-bindata/go-bindata/...)
- make build
depends_on:
- submodules
- clean
when:
event:
exclude:
- promote
- name: release
image: goreleaser/goreleaser:latest
environment:
GITEA_TOKEN:
from_secret: gitea_token
HOMEBREW_TAP_GITHUB_TOKEN:
from_secret: homebrew_tap_github_token
commands:
- (cd /tmp; go get -u github.com/go-bindata/go-bindata/...)
- goreleaser release --rm-dist --parallelism=1
depends_on:
- submodules
- clean
when:
event:
- promote
target:
- production