2019-05-21 00:30:07 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
2019-09-23 16:07:17 +00:00
|
|
|
name: python-3-5-alpine-3-10
|
2018-10-13 20:09:12 +00:00
|
|
|
|
2019-12-11 00:41:01 +00:00
|
|
|
services:
|
2019-12-11 00:43:43 +00:00
|
|
|
- name: postgresql
|
2019-12-11 05:41:15 +00:00
|
|
|
image: postgres:11.6-alpine
|
2019-12-11 00:41:01 +00:00
|
|
|
environment:
|
|
|
|
POSTGRES_PASSWORD: test
|
|
|
|
POSTGRES_DB: test
|
|
|
|
|
2019-05-21 00:30:07 +00:00
|
|
|
steps:
|
|
|
|
- name: build
|
2019-09-23 16:07:17 +00:00
|
|
|
image: python:3.5-alpine3.10
|
2019-05-21 00:30:07 +00:00
|
|
|
pull: always
|
|
|
|
commands:
|
2019-05-21 02:06:13 +00:00
|
|
|
- scripts/run-tests
|
2019-05-21 00:30:07 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
2019-09-23 16:07:17 +00:00
|
|
|
name: python-3-6-alpine-3-10
|
2019-05-21 00:30:07 +00:00
|
|
|
|
2019-12-11 00:41:01 +00:00
|
|
|
services:
|
2019-12-11 00:43:43 +00:00
|
|
|
- name: postgresql
|
2019-12-11 05:41:15 +00:00
|
|
|
image: postgres:11.6-alpine
|
2019-12-11 00:41:01 +00:00
|
|
|
environment:
|
|
|
|
POSTGRES_PASSWORD: test
|
|
|
|
POSTGRES_DB: test
|
|
|
|
|
2019-05-21 00:30:07 +00:00
|
|
|
steps:
|
|
|
|
- name: build
|
2019-09-23 16:07:17 +00:00
|
|
|
image: python:3.6-alpine3.10
|
2019-05-21 00:30:07 +00:00
|
|
|
pull: always
|
|
|
|
commands:
|
2019-05-21 02:06:13 +00:00
|
|
|
- scripts/run-tests
|
2019-05-21 00:30:07 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
2019-09-23 16:07:17 +00:00
|
|
|
name: python-3-7-alpine-3-10
|
2019-05-21 00:30:07 +00:00
|
|
|
|
2019-12-11 00:41:01 +00:00
|
|
|
services:
|
2019-12-11 00:43:43 +00:00
|
|
|
- name: postgresql
|
2019-12-11 05:41:15 +00:00
|
|
|
image: postgres:11.6-alpine
|
2019-12-11 00:41:01 +00:00
|
|
|
environment:
|
|
|
|
POSTGRES_PASSWORD: test
|
|
|
|
POSTGRES_DB: test
|
|
|
|
|
2019-05-21 00:30:07 +00:00
|
|
|
steps:
|
|
|
|
- name: build
|
2019-09-23 16:07:17 +00:00
|
|
|
image: python:3.7-alpine3.10
|
2019-05-21 00:30:07 +00:00
|
|
|
pull: always
|
|
|
|
commands:
|
2019-05-21 02:06:13 +00:00
|
|
|
- scripts/run-tests
|
2019-05-21 00:30:07 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: python-3-7-alpine-3-7
|
|
|
|
|
2019-12-11 00:41:01 +00:00
|
|
|
services:
|
2019-12-11 00:43:43 +00:00
|
|
|
- name: postgresql
|
2019-12-11 05:41:15 +00:00
|
|
|
image: postgres:10.11-alpine
|
2019-12-11 00:41:01 +00:00
|
|
|
environment:
|
|
|
|
POSTGRES_PASSWORD: test
|
|
|
|
POSTGRES_DB: test
|
|
|
|
|
2019-05-21 00:30:07 +00:00
|
|
|
steps:
|
|
|
|
- name: build
|
|
|
|
image: python:3.7-alpine3.7
|
|
|
|
pull: always
|
|
|
|
commands:
|
2019-05-21 02:06:13 +00:00
|
|
|
- scripts/run-tests
|
2019-05-22 04:33:25 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
2019-11-02 23:38:50 +00:00
|
|
|
name: python-3-8-alpine-3-10
|
|
|
|
|
2019-12-11 00:41:01 +00:00
|
|
|
services:
|
2019-12-11 00:43:43 +00:00
|
|
|
- name: postgresql
|
2019-12-11 05:41:15 +00:00
|
|
|
image: postgres:11.6-alpine
|
2019-12-11 00:41:01 +00:00
|
|
|
environment:
|
|
|
|
POSTGRES_PASSWORD: test
|
|
|
|
POSTGRES_DB: test
|
|
|
|
|
2019-11-02 23:38:50 +00:00
|
|
|
steps:
|
|
|
|
- name: build
|
|
|
|
image: python:3.8-alpine3.10
|
|
|
|
pull: always
|
|
|
|
commands:
|
|
|
|
- scripts/run-tests
|
|
|
|
---
|
|
|
|
kind: pipeline
|
2019-05-22 04:33:25 +00:00
|
|
|
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
|