mi-v1/.drone.yml

30 lines
460 B
YAML
Raw Permalink Normal View History

2020-01-19 18:22:42 +00:00
---
kind: pipeline
name: default
steps:
- name: test
2020-01-31 14:00:45 +00:00
image: xena/go:1.13.7
commands:
- go test ./...
environment:
2020-01-31 14:04:16 +00:00
CGO_ENABLED: 0
2020-01-31 14:00:45 +00:00
PLURALKIT_TOKEN:
from_secret: PLURALKIT_TOKEN
PLURALKIT_SYSTEM: tlici
PLURALKIT_MEMBER: cddmp
- name: docker build
2020-01-19 18:22:42 +00:00
image: docker:dind
volumes:
- name: dockersock
2020-01-20 14:15:48 +00:00
path: /var/run/docker.sock
2020-01-19 18:22:42 +00:00
commands:
- docker build .
volumes:
- name: dockersock
2020-01-20 14:15:48 +00:00
host:
path: /var/run/docker.sock