woodpecker-helm3/.drone.yml

28 lines
614 B
YAML
Raw Normal View History

kind: pipeline
type: docker
name: default
steps:
- name: test
image: golang:1.13
commands:
2019-12-09 23:27:56 +00:00
- go test ./cmd/... ./internal/...
- go vet ./cmd/... ./internal/...
- name: lint
image: cytopia/golint
commands:
- golint -set_exit_status ./cmd/... ./internal/...
- name: build
image: golang:1.13
commands:
- go build -o build/drone-helm cmd/drone-helm/main.go
- name: publish
image: plugins/docker
auto_tag: true
settings:
dockerfile: Dockerfile
registry: '192.168.0.17:5000'
repo: 192.168.0.17:5000/drone-helm3
insecure: true