borgmatic/.drone.yml

58 lines
900 B
YAML
Raw Normal View History

---
kind: pipeline
2019-09-23 16:07:17 +00:00
name: python-3-5-alpine-3-10
steps:
- name: build
2019-09-23 16:07:17 +00:00
image: python:3.5-alpine3.10
pull: always
commands:
2019-05-21 02:06:13 +00:00
- scripts/run-tests
---
kind: pipeline
2019-09-23 16:07:17 +00:00
name: python-3-6-alpine-3-10
steps:
- name: build
2019-09-23 16:07:17 +00:00
image: python:3.6-alpine3.10
pull: always
commands:
2019-05-21 02:06:13 +00:00
- scripts/run-tests
---
kind: pipeline
2019-09-23 16:07:17 +00:00
name: python-3-7-alpine-3-10
steps:
- name: build
2019-09-23 16:07:17 +00:00
image: python:3.7-alpine3.10
pull: always
commands:
2019-05-21 02:06:13 +00:00
- scripts/run-tests
---
kind: pipeline
name: python-3-7-alpine-3-7
steps:
- name: build
image: python:3.7-alpine3.7
pull: always
commands:
2019-05-21 02:06:13 +00:00
- scripts/run-tests
---
kind: pipeline
name: documentation
steps:
- name: build
image: plugins/docker
settings:
username:
from_secret: docker_username
password:
from_secret: docker_password
repo: witten/borgmatic-docs
dockerfile: docs/Dockerfile
when:
branch:
- master