xoxys.droneci_runner_docker/.drone.yml

153 lines
2.5 KiB
YAML
Raw Normal View History

2020-06-15 21:15:20 +02:00
---
kind: pipeline
name: linting
platform:
os: linux
arch: amd64
steps:
- name: ansible-later
2020-09-27 23:24:18 +02:00
image: thegeeklab/ansible-later
2020-06-15 21:15:20 +02:00
commands:
- ansible-later
2021-06-07 22:28:16 +02:00
- name: python-format
image: python:3.9
commands:
- pip install -qq yapf
- "[ -z \"$(find . -type f -name *.py)\" ] || (yapf -rd ./)"
2021-06-07 22:28:16 +02:00
environment:
PY_COLORS: 1
- name: python-flake8
image: python:3.9
commands:
- pip install -qq flake8
- flake8
environment:
PY_COLORS: 1
2020-06-15 21:15:20 +02:00
trigger:
ref:
- refs/heads/master
- refs/tags/**
- refs/pull/**
---
kind: pipeline
name: testing-centos7
platform:
os: linux
arch: amd64
concurrency:
limit: 1
workspace:
base: /drone/src
path: ${DRONE_REPO_NAME}
steps:
- name: ansible-molecule
2020-09-27 23:24:18 +02:00
image: thegeeklab/molecule:3
2020-06-15 21:15:20 +02:00
commands:
2020-09-25 10:20:52 +02:00
- molecule test -s centos7
2020-06-15 21:15:20 +02:00
environment:
2020-10-02 09:32:17 +02:00
HCLOUD_TOKEN:
from_secret: hcloud_token
2020-06-15 21:15:20 +02:00
trigger:
ref:
- refs/heads/master
- refs/tags/**
depends_on:
- linting
---
kind: pipeline
name: documentation
platform:
os: linux
arch: amd64
steps:
- name: generate
2020-09-27 23:24:18 +02:00
image: thegeeklab/ansible-doctor
2020-06-15 21:15:20 +02:00
environment:
ANSIBLE_DOCTOR_EXCLUDE_FILES: molecule/
ANSIBLE_DOCTOR_FORCE_OVERWRITE: true
ANSIBLE_DOCTOR_LOG_LEVEL: INFO
ANSIBLE_DOCTOR_OUTPUT_DIR: _docs/
ANSIBLE_DOCTOR_ROLE_NAME: ${DRONE_REPO_NAME#*.}
ANSIBLE_DOCTOR_TEMPLATE: hugo-book
- name: publish
image: plugins/gh-pages
settings:
netrc_machine: gitea.rknet.org
pages_directory: _docs/
password:
from_secret: gitea_token
remote_url: https://gitea.rknet.org/ansible/${DRONE_REPO_NAME}
target_branch: docs
username:
from_secret: gitea_username
when:
ref:
- refs/heads/master
trigger:
ref:
- refs/heads/master
- refs/tags/**
- refs/pull/**
depends_on:
- testing-centos7
---
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
2020-06-15 21:17:45 +02:00
---
kind: signature
hmac: 8120cd17186363a941b5cc30897a7cecf6aab820671a74ffb2f4f0d1caf05840
2020-06-15 21:17:45 +02:00
2020-06-15 21:15:20 +02:00
...