xoxys.droneci/.drone.yml

153 lines
2.7 KiB
YAML
Raw Permalink Normal View History

2019-01-11 23:41:39 +01:00
---
kind: pipeline
2019-05-19 01:44:23 +02:00
name: linting
platform:
os: linux
arch: amd64
steps:
2021-09-21 22:36:28 +02:00
- name: ansible-later
image: thegeeklab/ansible-later
commands:
- ansible-later
- name: python-format
2022-12-21 09:13:47 +01:00
image: python:3.11
2021-09-21 22:36:28 +02:00
commands:
- pip install -qq yapf
2022-12-21 09:13:47 +01:00
- "[ -z \"$(find . -type f -name *.py)\" ] || (yapf -rd ./)"
2021-09-21 22:36:28 +02:00
environment:
PY_COLORS: 1
- name: python-flake8
2022-12-21 09:13:47 +01:00
image: python:3.11
2021-09-21 22:36:28 +02:00
commands:
- pip install -qq flake8
- flake8
environment:
PY_COLORS: 1
2021-06-07 22:28:46 +02:00
2019-05-19 01:44:23 +02:00
trigger:
ref:
- refs/heads/main
2021-09-21 22:36:28 +02:00
- refs/tags/**
- refs/pull/**
2019-05-19 01:44:23 +02:00
2019-09-19 11:54:49 +02:00
---
kind: pipeline
2020-01-22 22:08:44 +01:00
name: testing-centos7
2019-09-19 11:54:49 +02:00
platform:
os: linux
arch: amd64
2019-10-16 22:24:46 +02:00
concurrency:
limit: 1
2019-09-19 11:54:49 +02:00
workspace:
base: /drone/src
2020-03-21 14:35:14 +01:00
path: ${DRONE_REPO_NAME}
2019-09-19 11:54:49 +02:00
steps:
2021-09-21 22:36:28 +02:00
- name: ansible-molecule
2022-12-21 09:13:47 +01:00
image: thegeeklab/molecule:4
2021-09-21 22:36:28 +02:00
commands:
- molecule test -s centos7
environment:
HCLOUD_TOKEN:
from_secret: hcloud_token
2019-09-19 11:54:49 +02:00
trigger:
ref:
- refs/heads/main
2021-09-21 22:36:28 +02:00
- refs/tags/**
2019-09-19 11:54:49 +02:00
depends_on:
2021-09-21 22:36:28 +02:00
- linting
2019-09-19 11:54:49 +02:00
2019-05-19 01:44:23 +02:00
---
kind: pipeline
2019-10-16 22:24:46 +02:00
name: documentation
platform:
os: linux
arch: amd64
steps:
2021-09-21 22:36:28 +02:00
- name: generate
image: thegeeklab/ansible-doctor
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/main
2020-01-22 22:08:44 +01:00
2019-10-16 22:24:46 +02:00
trigger:
ref:
- refs/heads/main
2021-09-21 22:36:28 +02:00
- refs/tags/**
- refs/pull/**
2019-10-16 22:24:46 +02:00
depends_on:
2021-09-21 22:36:28 +02:00
- testing-centos7
2019-10-16 22:24:46 +02:00
---
kind: pipeline
name: notification
2019-05-19 01:44:23 +02:00
platform:
os: linux
arch: amd64
clone:
disable: true
2019-01-11 23:41:39 +01:00
steps:
2021-09-21 22:36:28 +02:00
- name: matrix
image: thegeeklab/drone-matrix
settings:
homeserver:
from_secret: matrix_homeserver
password:
from_secret: matrix_password
roomid:
from_secret: matrix_roomid
2023-02-08 21:15:54 +01:00
template: "Status: **{{ .Build.Status }}**<br/> Build: [{{ .Repo.Owner }}/{{ .Repo.Name }}]({{ .Build.Link }}){{ if .Build.Branch }} ({{ .Build.Branch }}){{ end }} by {{ .Commit.Author }}<br/> Message: {{ .Commit.Message.Title }}"
2021-09-21 22:36:28 +02:00
username:
from_secret: matrix_username
2019-05-19 01:44:23 +02:00
trigger:
ref:
- refs/heads/main
2021-09-21 22:36:28 +02:00
- refs/tags/**
2019-05-19 01:44:23 +02:00
status:
2021-09-21 22:36:28 +02:00
- success
- failure
2019-05-19 01:44:23 +02:00
2019-05-19 01:46:30 +02:00
depends_on:
2021-09-21 22:36:28 +02:00
- documentation
2019-05-19 01:46:30 +02:00
2019-06-09 13:17:39 +02:00
---
kind: signature
2023-02-08 21:15:54 +01:00
hmac: d1a1c886c75fa6074249c12d17463203821175c7924e6549d7a5414f29d2f16c
2019-06-09 13:17:39 +02:00
2019-05-19 01:44:23 +02:00
...