go-bouquins/.drone.yml

52 lines
855 B
YAML
Raw Normal View History

2019-09-11 13:03:12 +00:00
---
kind: pipeline
type: docker
name: default
steps:
- name: build
image: golang
environment:
CGO_ENABLED: 1
GOOS: linux
commands:
- go test ./...
- go build -a -installsuffix cgo .
- name: lint
image: golang
commands:
- go get -u golang.org/x/lint/golint
- golint -set_exit_status ./...
- name: vet
image: golang
commands:
- go vet ./...
2019-09-11 15:42:26 +00:00
- name: docker
image: plugins/docker
settings:
registry: reg.meutel.net
repo: reg.meutel.net/go-bouquins
username:
from_secret: registry_login
password:
from_secret: registry_password
auto_tag: true
when:
event:
- tag
2019-09-11 13:03:12 +00:00
trigger:
event:
- push
2019-09-11 15:42:26 +00:00
- tag
2019-09-11 13:03:12 +00:00
---
kind: signature
2019-09-11 15:42:26 +00:00
hmac: 0f5318785e361ab48470f37a93f15cb218f6f2a22dbdd2ec2f16298dd7577ada
2019-09-11 13:03:12 +00:00
...