docker-build-mikrotik-exporter/.drone.yml
Radim Lipovčan d119b3582a
Some checks failed
continuous-integration/drone/push Build is failing
Update '.drone.yml'
2022-02-08 11:08:01 +01:00

19 lines
368 B
YAML

kind: pipeline
name: build
type: docker
steps:
- name: clone-repo
image: alpine:3
commands:
- apk add git
- git clone https://git.lipovcan.cz/Upstream/mikrotik-exporter.git
- mv mikrotik-exporter/* . ; rm mikrotik-exporter/ -Rvf
- name: golang-build
image: golang
commands:
- make build
- make utils
- name: image-create
image: plugins/docker