flucky/.drone.yml

25 lines
396 B
YAML
Raw Normal View History

2020-06-10 19:16:50 +00:00
kind: pipeline
type: docker
name: amd64
steps:
- name: build-linux-amd64
image: docker.io/volkerraschek/build-image:latest
commands:
- make bin/linux/amd64/flucky
when:
event:
- push
- pull_request
- tag
steps:
- name: test-unit
image: docker.io/volkerraschek/build-image:latest
commands:
- make test/unit
when:
event:
- push
- pull_request
- tag