Initial Commit

This commit is contained in:
2020-09-02 11:07:10 +02:00
commit c0161e363c
8 changed files with 515 additions and 0 deletions

25
.drone.yml Normal file
View File

@ -0,0 +1,25 @@
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
# steps:
# - name: test-unit
# image: docker.io/volkerraschek/build-image:latest
# commands:
# - make test/unit
# when:
# event:
# - push
# - pull_request
# - tag