2019-05-21 02:30:07 +02:00
|
|
|
kind: pipeline
|
2021-04-10 00:58:23 +02:00
|
|
|
name: python-3-8-alpine-3-13
|
2019-05-21 02:30:07 +02:00
|
|
|
|
2019-12-11 01:41:01 +01:00
|
|
|
services:
|
2019-12-11 01:43:43 +01:00
|
|
|
- name: postgresql
|
2020-12-25 07:23:09 +01:00
|
|
|
image: postgres:13.1-alpine
|
2019-12-11 01:41:01 +01:00
|
|
|
environment:
|
|
|
|
POSTGRES_PASSWORD: test
|
|
|
|
POSTGRES_DB: test
|
2019-12-12 01:43:01 +01:00
|
|
|
- name: mysql
|
2020-11-23 02:27:21 +01:00
|
|
|
image: mariadb:10.5
|
2019-12-12 01:43:01 +01:00
|
|
|
environment:
|
|
|
|
MYSQL_ROOT_PASSWORD: test
|
|
|
|
MYSQL_DATABASE: test
|
2021-12-29 22:18:50 +01:00
|
|
|
- name: mongodb
|
|
|
|
image: mongo:5.0.5
|
|
|
|
environment:
|
|
|
|
MONGO_INITDB_ROOT_USERNAME: root
|
|
|
|
MONGO_INITDB_ROOT_PASSWORD: test
|
2019-12-11 01:41:01 +01:00
|
|
|
|
2021-10-04 22:09:44 +02:00
|
|
|
clone:
|
2021-10-04 22:14:19 +02:00
|
|
|
skip_verify: true
|
2021-10-04 22:09:44 +02:00
|
|
|
|
2019-11-03 00:38:50 +01:00
|
|
|
steps:
|
|
|
|
- name: build
|
2021-04-10 00:58:23 +02:00
|
|
|
image: alpine:3.13
|
2019-11-03 00:38:50 +01:00
|
|
|
pull: always
|
|
|
|
commands:
|
2019-12-12 01:43:01 +01:00
|
|
|
- scripts/run-full-tests
|
2019-11-03 00:38:50 +01:00
|
|
|
---
|
|
|
|
kind: pipeline
|
2019-05-22 06:33:25 +02:00
|
|
|
name: documentation
|
|
|
|
|
2021-10-04 23:31:15 +02:00
|
|
|
clone:
|
|
|
|
skip_verify: true
|
|
|
|
|
2019-05-22 06:33:25 +02:00
|
|
|
steps:
|
|
|
|
- name: build
|
2021-11-15 19:56:12 +01:00
|
|
|
image: plugins/docker
|
2019-05-22 06:33:25 +02:00
|
|
|
settings:
|
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
2022-08-02 06:17:59 +02:00
|
|
|
registry: projects.torsion.org
|
|
|
|
repo: projects.torsion.org/borgmatic-collective/borgmatic
|
|
|
|
tags: docs
|
2019-05-22 06:33:25 +02:00
|
|
|
dockerfile: docs/Dockerfile
|
2021-04-10 00:04:09 +02:00
|
|
|
|
|
|
|
trigger:
|
2021-10-23 18:45:17 +02:00
|
|
|
repo:
|
|
|
|
- borgmatic-collective/borgmatic
|
2021-04-10 00:04:09 +02:00
|
|
|
branch:
|
|
|
|
- master
|
2021-11-15 20:08:26 +01:00
|
|
|
event:
|
|
|
|
- push
|