toyohime/.drone.yml
jonbetti 721ef666e8 Make go module
git-svn-id: file:///srv/svn/repo/toyohime/trunk@102 922d331f-388e-da47-97a9-ad700dc0b8b9
2018-12-08 22:02:46 +00:00

28 lines
364 B
YAML

---
platform:
os: linux
arch: amd64
workspace:
base: /go
path: src/go.jonnrb.io/vanity
steps:
- name: build
image: golang:latest
commands:
- go test ./...
- go build ./...
- name: docker
image: plugins/docker
settings:
repo: jonnrb/vanityserver
secrets:
- docker_username
- docker_password
storage_driver: overlay2
...