godns/.drone.yml
Tyler d8079551c9
Some checks failed
continuous-integration/drone/push Build is failing
Add testing, cleanup, rework suffix tree to use nameservers. Parse nameservers from yaml.
2021-04-15 01:04:58 -04:00

38 lines
670 B
YAML

kind: pipeline
name: amd64
type: docker
steps:
- name: test
image: golang:alpine
commands:
- go test ...
- name: build
image: golang:alpine
volumes:
- name: build
path: /build
commands:
- go build -o /build/godns
- name: docker
image: plugins/docker
volumes:
- name: build
path: /build
settings:
username:
from_secret: docker_username
password:
from_secret: docker_password
repo: registry.meow.tf/joker/godns
registry: registry.meow.tf
tags:
- amd64-latest
when:
branch:
- master
volumes:
- name: build
temp: {}