Robert Kaussow
214688c33f
Some checks reported errors
continuous-integration/drone/push Build was killed
149 lines
2.6 KiB
YAML
149 lines
2.6 KiB
YAML
---
|
|
kind: pipeline
|
|
name: linting
|
|
|
|
platform:
|
|
os: linux
|
|
arch: amd64
|
|
|
|
steps:
|
|
- name: ansible-later
|
|
image: xoxys/ansible-later:latest
|
|
commands:
|
|
- wget https://gitea.rknet.org/ansible/ansible-later-policy/raw/branch/master/config.yml
|
|
- ansible-later -c config.yml
|
|
environment:
|
|
PY_COLORS: 1
|
|
|
|
trigger:
|
|
ref:
|
|
- refs/heads/master
|
|
- "refs/tags/**"
|
|
- "refs/pull/**"
|
|
|
|
---
|
|
kind: pipeline
|
|
name: deployment
|
|
|
|
platform:
|
|
os: linux
|
|
arch: amd64
|
|
|
|
concurrency:
|
|
limit: 1
|
|
|
|
workspace:
|
|
base: /drone/src
|
|
path: xoxys.certbot
|
|
|
|
steps:
|
|
- name: ansible-molecule
|
|
image: xoxys/molecule:do-linux-amd64
|
|
commands:
|
|
- /bin/bash /docker-entrypoint.sh
|
|
- molecule test -s default
|
|
environment:
|
|
DO_API_KEY:
|
|
from_secret: do_api_key
|
|
MOLECULE_CUSTOM_FILTERS_REPO: https://gitea.rknet.org/ansible/custom_filters
|
|
MOLECULE_CUSTOM_MODULES_REPO: https://gitea.rknet.org/ansible/custom_modules
|
|
PY_COLORS: 1
|
|
USER: root
|
|
|
|
trigger:
|
|
ref:
|
|
- refs/heads/master
|
|
- "refs/tags/**"
|
|
|
|
depends_on:
|
|
- linting
|
|
|
|
---
|
|
kind: pipeline
|
|
name: documentation
|
|
|
|
platform:
|
|
os: linux
|
|
arch: amd64
|
|
|
|
steps:
|
|
- name: ansible-doctor
|
|
image: xoxys/ansible-doctor:latest
|
|
environment:
|
|
ANSIBLE_DOCTOR_CUSTOM_HEADER: HEADER.md
|
|
ANSIBLE_DOCTOR_EXCLUDE_FILES: molecule/
|
|
ANSIBLE_DOCTOR_FORCE_OVERWRITE: true
|
|
ANSIBLE_DOCTOR_LOG_LEVEL: INFO
|
|
PY_COLORS: 1
|
|
|
|
- name: push-to-repo
|
|
image: plugins/git-action:latest
|
|
settings:
|
|
actions:
|
|
- commit
|
|
- push
|
|
author_email: "shipper@rknet.org"
|
|
author_name: DroneShipper
|
|
branch: master
|
|
message: "[SKIP CI] update readme"
|
|
netrc_machine: gitea.rknet.org
|
|
netrc_password:
|
|
from_secret: gitea_token
|
|
netrc_username:
|
|
from_secret: gitea_username
|
|
remote: https://gitea.rknet.org/ansible/xoxys.certbot
|
|
when:
|
|
ref:
|
|
- refs/heads/master
|
|
|
|
trigger:
|
|
ref:
|
|
- refs/heads/master
|
|
- "refs/tags/**"
|
|
- "refs/pull/**"
|
|
|
|
depends_on:
|
|
- deployment
|
|
|
|
---
|
|
kind: pipeline
|
|
name: notification
|
|
|
|
platform:
|
|
os: linux
|
|
arch: amd64
|
|
|
|
clone:
|
|
disable: true
|
|
|
|
steps:
|
|
- name: matrix
|
|
image: plugins/matrix
|
|
settings:
|
|
homeserver:
|
|
from_secret: matrix_homeserver
|
|
password:
|
|
from_secret: matrix_password
|
|
roomid:
|
|
from_secret: matrix_roomid
|
|
template: "Status: **{{ build.status }}**<br/> Build: [{{ repo.Owner }}/{{ repo.Name }}]({{ build.link }}) ({{ build.branch }}) by {{ build.author }}<br/> Message: {{ build.message }}"
|
|
username:
|
|
from_secret: matrix_username
|
|
|
|
trigger:
|
|
ref:
|
|
- refs/heads/master
|
|
- "refs/tags/**"
|
|
status:
|
|
- success
|
|
- failure
|
|
|
|
depends_on:
|
|
- documentation
|
|
|
|
---
|
|
kind: signature
|
|
hmac: f685866b52641560b6a9d1381bde87c8a204f6d41d916396064e0a5186e8b0eb
|
|
|
|
...
|