12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- ---
- kind: pipeline
- name: python-3-5-alpine-3-10
- steps:
- - name: build
- image: python:3.5-alpine3.10
- pull: always
- commands:
- - scripts/run-tests
- ---
- kind: pipeline
- name: python-3-6-alpine-3-10
- steps:
- - name: build
- image: python:3.6-alpine3.10
- pull: always
- commands:
- - scripts/run-tests
- ---
- kind: pipeline
- name: python-3-7-alpine-3-10
- steps:
- - name: build
- image: python:3.7-alpine3.10
- pull: always
- commands:
- - scripts/run-tests
- ---
- kind: pipeline
- name: python-3-7-alpine-3-7
- steps:
- - name: build
- image: python:3.7-alpine3.7
- pull: always
- commands:
- - scripts/run-tests
- ---
- kind: pipeline
- name: python-3-8-alpine-3-10
- steps:
- - name: build
- image: python:3.8-alpine3.10
- pull: always
- commands:
- - 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
|