xoxys.postfix_relay/.drone.yml

153 lines
2.6 KiB
YAML
Raw Normal View History

2019-01-12 13:51:41 +01:00
---
kind: pipeline
name: linting
platform:
os: linux
arch: amd64
2019-01-12 13:51:41 +01:00
steps:
2019-10-18 13:12:38 +02:00
- name: ansible-later
image: xoxys/ansible-later:latest
commands:
2019-11-22 23:59:05 +01:00
- ansible-later
trigger:
ref:
- refs/heads/master
2019-11-22 23:59:05 +01:00
- refs/tags/**
- refs/pull/**
2019-08-24 15:01:30 +02:00
---
kind: pipeline
2020-01-22 22:08:44 +01:00
name: testing-centos7
2019-08-24 15:01:30 +02:00
platform:
os: linux
arch: amd64
2019-10-18 13:12:38 +02:00
concurrency:
limit: 1
2019-08-24 15:01:30 +02:00
workspace:
base: /drone/src
path: xoxys.postfix_relay
steps:
2019-10-18 13:12:38 +02:00
- name: ansible-molecule
2019-11-22 23:59:05 +01:00
image: xoxys/molecule:latest
2019-08-24 15:01:30 +02:00
commands:
2020-01-22 22:08:44 +01:00
- molecule test -scentos7
2019-08-24 15:01:30 +02:00
environment:
2019-10-18 13:12:38 +02:00
DO_API_KEY:
from_secret: do_api_key
2019-08-24 15:01:30 +02:00
MOLECULE_CUSTOM_FILTERS_REPO: https://gitea.rknet.org/ansible/custom_filters
MOLECULE_CUSTOM_MODULES_REPO: https://gitea.rknet.org/ansible/custom_modules
2019-10-18 13:12:38 +02:00
USER: root
2019-08-24 15:01:30 +02:00
trigger:
ref:
- refs/heads/master
2019-11-22 23:59:05 +01:00
- refs/tags/**
2019-08-24 15:01:30 +02:00
depends_on:
- linting
---
kind: pipeline
2019-10-18 13:12:38 +02:00
name: documentation
platform:
os: linux
arch: amd64
steps:
2020-01-22 22:08:44 +01:00
- name: generate
2019-10-18 13:12:38 +02:00
image: xoxys/ansible-doctor:latest
environment:
ANSIBLE_DOCTOR_EXCLUDE_FILES: molecule/
ANSIBLE_DOCTOR_FORCE_OVERWRITE: true
ANSIBLE_DOCTOR_LOG_LEVEL: INFO
2020-01-22 22:08:44 +01:00
ANSIBLE_DOCTOR_OUTPUT_DIR: _docs/
ANSIBLE_DOCTOR_ROLE_NAME: ${DRONE_REPO_NAME#*.}
ANSIBLE_DOCTOR_TEMPLATE: hugo-book
2019-10-18 13:12:38 +02:00
2020-01-22 22:08:44 +01:00
- name: publish
image: plugins/gh-pages:latest
2019-10-18 13:12:38 +02:00
settings:
netrc_machine: gitea.rknet.org
2020-01-22 22:08:44 +01:00
pages_directory: _docs/
password:
2019-10-18 13:12:38 +02:00
from_secret: gitea_token
2020-01-22 22:08:44 +01:00
remote_url: https://gitea.rknet.org/ansible/xoxys.postfix_relay
target_branch: docs
username:
2019-10-18 13:12:38 +02:00
from_secret: gitea_username
2020-01-22 22:08:44 +01:00
when:
ref:
- refs/heads/master
- name: trigger
image: plugins/downstream
settings:
fork: true
repositories:
- ansible/ansible-galaxy
server: https://drone.rknet.org
token:
from_secret: drone_token
2019-10-18 13:12:38 +02:00
when:
ref:
- refs/heads/master
trigger:
ref:
- refs/heads/master
2019-11-22 23:59:05 +01:00
- refs/tags/**
- refs/pull/**
2019-10-18 13:12:38 +02:00
depends_on:
2020-01-22 22:08:44 +01:00
- testing-centos7
2019-10-18 13:12:38 +02:00
---
kind: pipeline
name: notification
platform:
os: linux
arch: amd64
clone:
disable: true
steps:
- name: matrix
image: plugins/matrix
settings:
2019-10-18 13:12:38 +02:00
homeserver:
from_secret: matrix_homeserver
password:
from_secret: matrix_password
2019-10-18 13:12:38 +02:00
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
2019-11-22 23:59:05 +01:00
- refs/tags/**
status:
- success
- failure
depends_on:
2019-10-18 13:12:38 +02:00
- documentation
---
kind: signature
2020-01-22 22:08:44 +01:00
hmac: 57a7c9ad4e5895afaa61a15ed89c08252c7e6f2d370b245380f68fb6dc46dfc6
...