1
0
Fork 0
alias/.drone.yml

39 lines
618 B
YAML

kind: pipeline
type: docker
name: default
steps:
- name: test
image: golang:1.14-alpine
pull: true
environment:
CGO_ENABLED: 0
GOOS: linux
GOARCH: amd64
commands:
- cd coredns && go test
- name: build
image: golang:1.14-alpine
pull: true
environment:
CGO_ENABLED: 0
GOOS: linux
GOARCH: amd64
commands:
- cd coredns && go build
when:
event:
- tag
- name: release
image: plugins/gitea-release
settings:
base_url: https://git.makerforce.io
api_key:
from_secret: gitea_token
files: coredns/coredns
when:
event:
- tag
# vim: ts=2:sw=2