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

20 lines
370 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/* .
- name: golang-build
image: golang
commands:
- go build
- go test
- echo -n "5.2.6,5.2.4" > .tags
- name: image-create
image: plugins/docker