xoxys.matrix/.drone.yml

115 lines
2.0 KiB
YAML
Raw Normal View History

2019-01-18 14:52:23 +01:00
---
kind: pipeline
2019-05-19 14:38:19 +02:00
name: linting
platform:
os: linux
arch: amd64
2019-01-18 14:52:23 +01:00
steps:
2019-10-17 21:20:25 +02:00
- name: ansible-later
2020-02-21 00:46:35 +01:00
image: xoxys/ansible-later
2019-05-19 14:38:19 +02:00
commands:
2019-11-22 23:59:05 +01:00
- ansible-later
2019-05-19 14:38:19 +02:00
2019-10-17 21:20:25 +02:00
trigger:
ref:
- refs/heads/master
2019-11-22 23:59:05 +01:00
- refs/tags/**
- refs/pull/**
2019-10-17 21:20:25 +02:00
---
kind: pipeline
name: documentation
platform:
os: linux
arch: amd64
steps:
2020-01-22 22:46:45 +01:00
- name: generate
2020-02-21 00:46:35 +01:00
image: xoxys/ansible-doctor
2019-05-19 14:38:19 +02:00
environment:
2019-10-17 21:20:25 +02:00
ANSIBLE_DOCTOR_EXCLUDE_FILES: molecule/
ANSIBLE_DOCTOR_FORCE_OVERWRITE: true
ANSIBLE_DOCTOR_LOG_LEVEL: INFO
2020-01-22 22:46:45 +01:00
ANSIBLE_DOCTOR_OUTPUT_DIR: _docs/
ANSIBLE_DOCTOR_ROLE_NAME: ${DRONE_REPO_NAME#*.}
ANSIBLE_DOCTOR_TEMPLATE: hugo-book
2019-10-17 21:20:25 +02:00
2020-01-22 22:46:45 +01:00
- name: publish
2020-02-21 00:46:35 +01:00
image: plugins/gh-pages
2019-10-17 21:20:25 +02:00
settings:
netrc_machine: gitea.rknet.org
2020-01-22 22:46:45 +01:00
pages_directory: _docs/
password:
2019-10-17 21:20:25 +02:00
from_secret: gitea_token
2020-03-21 14:35:14 +01:00
remote_url: https://gitea.rknet.org/ansible/${DRONE_REPO_NAME}
2020-01-22 22:46:45 +01:00
target_branch: docs
username:
2019-10-17 21:20:25 +02:00
from_secret: gitea_username
when:
ref:
- refs/heads/master
2019-05-19 14:38:19 +02:00
2020-01-22 22:46:45 +01:00
- name: trigger
image: plugins/downstream
settings:
fork: true
repositories:
2020-05-25 23:01:26 +02:00
- ansible/galaxy
2020-01-22 22:46:45 +01:00
server: https://drone.rknet.org
token:
from_secret: drone_token
when:
ref:
- refs/heads/master
2019-05-19 14:38:19 +02:00
trigger:
ref:
- refs/heads/master
2019-11-22 23:59:05 +01:00
- refs/tags/**
- refs/pull/**
2019-05-19 14:38:19 +02:00
---
kind: pipeline
2019-10-17 21:20:25 +02:00
name: notification
2019-05-19 14:38:19 +02:00
platform:
os: linux
arch: amd64
clone:
disable: true
steps:
- name: matrix
image: plugins/matrix
settings:
2019-10-17 21:20:25 +02:00
homeserver:
from_secret: matrix_homeserver
2019-05-19 14:38:19 +02:00
password:
from_secret: matrix_password
2019-10-17 21:20:25 +02:00
roomid:
from_secret: matrix_roomid
2019-05-19 14:38:19 +02:00
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
2019-11-22 23:59:05 +01:00
- refs/tags/**
2019-05-19 14:38:19 +02:00
status:
- success
- failure
depends_on:
2019-10-17 21:20:25 +02:00
- documentation
2019-05-19 14:38:19 +02:00
2019-05-19 22:00:09 +02:00
---
kind: signature
2020-05-25 23:01:26 +02:00
hmac: df1570927bacd64a72d3b9a78ae1f5088f82b1a4375a766c855a816efc95e2cd
2019-05-19 22:00:09 +02:00
2019-05-19 14:38:19 +02:00
...