2019-05-21 02:30:07 +02:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: python-3-5-alpine-3-9
|
2018-10-13 22:09:12 +02:00
|
|
|
|
2019-05-21 02:30:07 +02:00
|
|
|
steps:
|
|
|
|
- name: build
|
|
|
|
image: python:3.5-alpine3.9
|
|
|
|
pull: always
|
|
|
|
commands:
|
2019-05-21 04:06:13 +02:00
|
|
|
- scripts/run-tests
|
2019-05-21 02:30:07 +02:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: python-3-6-alpine-3-9
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: build
|
|
|
|
image: python:3.6-alpine3.9
|
|
|
|
pull: always
|
|
|
|
commands:
|
2019-05-21 04:06:13 +02:00
|
|
|
- scripts/run-tests
|
2019-05-21 02:30:07 +02:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: python-3-7-alpine-3-9
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: build
|
|
|
|
image: python:3.7-alpine3.9
|
|
|
|
pull: always
|
|
|
|
commands:
|
2019-05-21 04:06:13 +02:00
|
|
|
- scripts/run-tests
|
2019-05-21 02:30:07 +02:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: python-3-7-alpine-3-7
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: build
|
|
|
|
image: python:3.7-alpine3.7
|
|
|
|
pull: always
|
|
|
|
commands:
|
2019-05-21 04:06:13 +02:00
|
|
|
- scripts/run-tests
|
2019-05-22 06:33:25 +02:00
|
|
|
---
|
|
|
|
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
|