Files
protoplex/.drone.yml
Cassandra 59774fcd8c Bring our CI into 2020 (#12)
* Switch CI to Drone

* Fix a CI complaint

* Embed version into builds

* Test if the version is being detected

* Success, remove debug print
2020-07-18 23:38:13 +02:00

37 lines
917 B
YAML

kind: pipeline
type: docker
name: build
steps:
- name: lint
image: golang:1.14-alpine
commands:
- go get golang.org/x/lint/golint github.com/securego/gosec/cmd/gosec
- test -z $(gofmt -l .)
- golint -set_exit_status ./...
- gosec -quiet ./...
- name: prepare and build
image: golang:1.14-alpine
commands:
- go get github.com/mitchellh/gox
- go get -v -d ./...
- mkdir -p dist
- arch=$(go tool dist list |
tr "\n" " " |
sed -r "s~((android|nacl)/\w+|darwin/arm(64)?)~~g" |
xargs)
- version=$(if [ -z "$DRONE_TAG" ]; then echo $DRONE_COMMIT; else echo $DRONE_TAG; fi)
- gox -parallel=16 -osarch="$arch" -output="dist/{{.Dir}}_{{.OS}}_{{.Arch}}" -ldflags "-X main.version=$version" ./...
environment:
CGO_ENABLED: 0
- name: release binaries
image: plugins/github-release
settings:
api_key:
from_secret: github_token
files: dist/*
when:
event: tag