wg-quicker/.drone.yml
Marvin Steadfast d578d0a5e4
Some checks failed
continuous-integration/drone/push Build is failing
continuous-integration/drone/tag Build is failing
uses wireguard-go submodule + arm 6 and 7 builds
2021-01-22 11:05:17 +01:00

66 lines
1.3 KiB
YAML

---
kind: pipeline
name: default
steps:
- name: git
image: alpine/git
commands:
- git fetch --tags
- git submodule update --recursive --remote
- 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:
- 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:
- clean