forked from borgmatic-collective/borgmatic
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
100 lines
1.6 KiB
100 lines
1.6 KiB
--- |
|
kind: pipeline |
|
name: python-3-6-alpine-3-9 |
|
|
|
services: |
|
- name: postgresql |
|
image: postgres:11.9-alpine |
|
environment: |
|
POSTGRES_PASSWORD: test |
|
POSTGRES_DB: test |
|
- name: mysql |
|
image: mariadb:10.3 |
|
environment: |
|
MYSQL_ROOT_PASSWORD: test |
|
MYSQL_DATABASE: test |
|
|
|
clone: |
|
skip_verify: true |
|
|
|
steps: |
|
- name: build |
|
image: alpine:3.9 |
|
pull: always |
|
commands: |
|
- scripts/run-full-tests |
|
--- |
|
kind: pipeline |
|
name: python-3-7-alpine-3-10 |
|
|
|
services: |
|
- name: postgresql |
|
image: postgres:11.9-alpine |
|
environment: |
|
POSTGRES_PASSWORD: test |
|
POSTGRES_DB: test |
|
- name: mysql |
|
image: mariadb:10.3 |
|
environment: |
|
MYSQL_ROOT_PASSWORD: test |
|
MYSQL_DATABASE: test |
|
|
|
clone: |
|
skip_verify: true |
|
|
|
steps: |
|
- name: build |
|
image: alpine:3.10 |
|
pull: always |
|
commands: |
|
- scripts/run-full-tests |
|
--- |
|
kind: pipeline |
|
name: python-3-8-alpine-3-13 |
|
|
|
services: |
|
- name: postgresql |
|
image: postgres:13.1-alpine |
|
environment: |
|
POSTGRES_PASSWORD: test |
|
POSTGRES_DB: test |
|
- name: mysql |
|
image: mariadb:10.5 |
|
environment: |
|
MYSQL_ROOT_PASSWORD: test |
|
MYSQL_DATABASE: test |
|
|
|
clone: |
|
skip_verify: true |
|
|
|
steps: |
|
- name: build |
|
image: alpine:3.13 |
|
pull: always |
|
commands: |
|
- scripts/run-full-tests |
|
--- |
|
kind: pipeline |
|
name: documentation |
|
|
|
clone: |
|
skip_verify: true |
|
|
|
steps: |
|
- name: build |
|
image: plugins/docker |
|
settings: |
|
username: |
|
from_secret: docker_username |
|
password: |
|
from_secret: docker_password |
|
repo: witten/borgmatic-docs |
|
dockerfile: docs/Dockerfile |
|
|
|
trigger: |
|
repo: |
|
- borgmatic-collective/borgmatic |
|
branch: |
|
- master |
|
event: |
|
- push
|
|
|