flucky/.drone.yml

25 lines
432 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:
2020-08-25 17:31:30 +00:00
- make --jobs=$(nproc) bin/linux/amd64/flucky
2020-06-10 19:16:50 +00:00
when:
event:
- push
- pull_request
- tag
2020-06-10 19:26:22 +00:00
# steps:
# - name: test-unit
# image: docker.io/volkerraschek/build-image:latest
# commands:
# - make test/unit
# when:
# event:
# - push
# - pull_request
# - tag