set-sshkeys/.drone.yml

24 lines
410 B
YAML
Raw Normal View History

2020-09-02 09:07:10 +00:00
kind: pipeline
type: docker
name: amd64
steps:
- name: build-linux-amd64
image: docker.io/volkerraschek/build-image:latest
commands:
- make --jobs=$(nproc) bin/linux/amd64/set-sshkeys
when:
event:
- push
- pull_request
- tag
2020-09-02 11:28:21 +00:00
- name: test-unit
image: docker.io/volkerraschek/build-image:latest
commands:
- make test/unit
when:
event:
- push
- pull_request
- tag