wg-quicker/.drone.yml
Marvin Steadfast 2f6e70adda
Some checks reported errors
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build was killed
try to fix submodules again
2021-01-22 11:57:43 +01:00

73 lines
1.4 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
when:
event:
exclude:
- tag
depends_on:
- submodules
- clean
- name: release
image: goreleaser/goreleaser:latest
environment:
GITEA_TOKEN:
from_secret: gitea_token
commands:
- (cd /tmp; go get -u github.com/go-bindata/go-bindata/...)
- goreleaser release --rm-dist --parallelism=1
when:
event:
- tag
depends_on:
- submodules
- clean