xoxys.sshd/.drone.yml

137 lines
2.2 KiB
YAML
Raw Normal View History

2019-11-02 19:10:39 +01:00
---
kind: pipeline
name: linting
platform:
os: linux
arch: amd64
steps:
- name: ansible-later
2020-09-27 23:24:16 +02:00
image: thegeeklab/ansible-later
2019-11-02 19:10:39 +01:00
commands:
2019-11-22 23:59:05 +01:00
- ansible-later
2019-11-02 19:10:39 +01:00
trigger:
ref:
- refs/heads/master
- refs/tags/**
- refs/pull/**
---
kind: pipeline
2020-01-22 22:08:45 +01:00
name: testing-centos7
2019-11-02 19:10:39 +01:00
platform:
os: linux
arch: amd64
concurrency:
limit: 1
workspace:
base: /drone/src
2020-03-21 14:35:14 +01:00
path: ${DRONE_REPO_NAME}
2019-11-02 19:10:39 +01:00
steps:
- name: ansible-molecule
2020-09-27 23:24:16 +02:00
image: thegeeklab/molecule:3
2019-11-02 19:10:39 +01:00
commands:
2020-08-19 18:39:04 +02:00
- molecule test -s centos7
2019-11-02 19:10:39 +01:00
environment:
2020-10-02 09:32:14 +02:00
HCLOUD_TOKEN:
from_secret: hcloud_token
2019-11-02 19:10:39 +01:00
trigger:
ref:
- refs/heads/master
- refs/tags/**
depends_on:
- linting
---
kind: pipeline
name: documentation
platform:
os: linux
arch: amd64
steps:
2020-01-22 22:08:45 +01:00
- name: generate
2020-09-27 23:24:16 +02:00
image: thegeeklab/ansible-doctor
2019-11-02 19:10:39 +01:00
environment:
ANSIBLE_DOCTOR_EXCLUDE_FILES: molecule/
ANSIBLE_DOCTOR_FORCE_OVERWRITE: true
ANSIBLE_DOCTOR_LOG_LEVEL: INFO
2020-01-22 22:08:45 +01:00
ANSIBLE_DOCTOR_OUTPUT_DIR: _docs/
ANSIBLE_DOCTOR_ROLE_NAME: ${DRONE_REPO_NAME#*.}
ANSIBLE_DOCTOR_TEMPLATE: hugo-book
2019-11-02 19:10:39 +01:00
2020-01-22 22:08:45 +01:00
- name: publish
2020-02-21 00:46:35 +01:00
image: plugins/gh-pages
2019-11-02 19:10:39 +01:00
settings:
netrc_machine: gitea.rknet.org
2020-01-22 22:08:45 +01:00
pages_directory: _docs/
password:
2019-11-02 19:10:39 +01: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:08:45 +01:00
target_branch: docs
username:
2019-11-02 19:10:39 +01:00
from_secret: gitea_username
2020-01-22 22:08:45 +01:00
when:
ref:
- refs/heads/master
2019-11-02 19:10:39 +01:00
trigger:
ref:
- refs/heads/master
- refs/tags/**
- refs/pull/**
depends_on:
2020-01-22 22:08:45 +01:00
- testing-centos7
2019-11-02 19:10:39 +01:00
---
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
2020-10-02 09:32:14 +02:00
hmac: fe5884fb43fc60107a9a3da95806fc3a659a68e9ce3e7cc95973648de44fc643
2019-11-02 19:10:39 +01:00
...