go-bouquins/.drone.yml
Meutel 7d1782dc25
All checks were successful
continuous-integration/drone/push Build is passing
Build branch
2019-09-13 12:11:41 +02:00

68 lines
1.2 KiB
YAML

---
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 ./...
- 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
- name: docker-branch
image: plugins/docker
settings:
registry: reg.meutel.net
repo: reg.meutel.net/go-bouquins
tags:
- ${DRONE_REPO_BRANCH}
debug: true
username:
from_secret: registry_login
password:
from_secret: registry_password
when:
branch:
- feature/*
trigger:
event:
- push
- tag
---
kind: signature
hmac: e7274f01722fb82e4c7085fa94f04323283ec8c5cfb5f9709e271c12fc9776f0
...