grus/build/ci/drone.yml
2020-04-06 22:10:12 +05:30

44 lines
607 B
YAML

---
kind: pipeline
name: testing
steps:
- name: vet
image: golang:1.13
commands:
- go vet ./...
- name: test
image: golang:1.13
commands:
- go test -v ./...
---
kind: pipeline
name: build
steps:
- name: openbsd-amd64
image: golang:1.13
environment:
GOARCH: amd64
GOOS: openbsd
commands:
- go build ./cmd/grus
- name: linux-amd64
image: golang:1.13
environment:
GOARCH: amd64
GOOS: linux
commands:
- go build ./cmd/grus
- name: darwin-amd64
image: golang:1.13
environment:
GOARCH: amd64
GOOS: darwin
commands:
- go build ./cmd/grus