go-bouquins/.drone.yml
Meutel a97fe8023e
All checks were successful
continuous-integration/drone/push Build is passing
fix tag
2019-09-14 11:09:50 +02:00

67 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_BRANCH##feature/}
debug: true
username:
from_secret: registry_login
password:
from_secret: registry_password
when:
branch:
- feature/*
trigger:
event:
- push
- tag
---
kind: signature
hmac: f4b0570267fde8441646efad255cfc9c8168b907fb3fdfc7f5fba72576628c0e
...