2019-08-25 18:18:43 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: linting
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
2021-09-21 20:36:56 +00:00
|
|
|
- name: ansible-later
|
|
|
|
image: thegeeklab/ansible-later
|
|
|
|
commands:
|
|
|
|
- ansible-later
|
|
|
|
|
|
|
|
- name: python-format
|
2022-07-02 19:53:35 +00:00
|
|
|
image: python:3.10
|
2021-09-21 20:36:56 +00:00
|
|
|
commands:
|
|
|
|
- pip install -qq yapf
|
|
|
|
- "[ -z \"$(find . -type f -name *.py)\" ] || (yapf -rd ./)"
|
|
|
|
environment:
|
|
|
|
PY_COLORS: 1
|
|
|
|
|
|
|
|
- name: python-flake8
|
2022-07-02 19:53:35 +00:00
|
|
|
image: python:3.10
|
2021-09-21 20:36:56 +00:00
|
|
|
commands:
|
|
|
|
- pip install -qq flake8
|
|
|
|
- flake8
|
|
|
|
environment:
|
|
|
|
PY_COLORS: 1
|
2021-06-07 20:28:28 +00:00
|
|
|
|
2019-08-25 18:18:43 +00:00
|
|
|
trigger:
|
|
|
|
ref:
|
2022-06-20 20:20:34 +00:00
|
|
|
- refs/heads/main
|
2021-09-21 20:36:56 +00:00
|
|
|
- refs/tags/**
|
|
|
|
- refs/pull/**
|
2019-08-25 18:18:43 +00:00
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
2020-01-22 21:08:45 +00:00
|
|
|
name: testing-centos7
|
2019-08-25 18:18:43 +00:00
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
2019-10-18 12:50:04 +00:00
|
|
|
concurrency:
|
|
|
|
limit: 1
|
|
|
|
|
2019-08-25 18:18:43 +00:00
|
|
|
workspace:
|
|
|
|
base: /drone/src
|
2020-03-21 13:35:14 +00:00
|
|
|
path: ${DRONE_REPO_NAME}
|
2019-08-25 18:18:43 +00:00
|
|
|
|
|
|
|
steps:
|
2021-09-21 20:36:56 +00:00
|
|
|
- name: ansible-molecule
|
|
|
|
image: thegeeklab/molecule:3
|
|
|
|
commands:
|
|
|
|
- molecule test -s centos7
|
|
|
|
environment:
|
|
|
|
HCLOUD_TOKEN:
|
|
|
|
from_secret: hcloud_token
|
2019-08-25 18:18:43 +00:00
|
|
|
|
|
|
|
trigger:
|
|
|
|
ref:
|
2022-06-20 20:20:34 +00:00
|
|
|
- refs/heads/main
|
2021-09-21 20:36:56 +00:00
|
|
|
- refs/tags/**
|
2022-01-26 20:02:36 +00:00
|
|
|
- refs/pull/**
|
|
|
|
|
|
|
|
depends_on:
|
|
|
|
- linting
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: testing-rocky8
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
concurrency:
|
|
|
|
limit: 1
|
|
|
|
|
|
|
|
workspace:
|
|
|
|
base: /drone/src
|
|
|
|
path: ${DRONE_REPO_NAME}
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: ansible-molecule
|
|
|
|
image: thegeeklab/molecule:3
|
|
|
|
commands:
|
|
|
|
- molecule test -s rocky8
|
|
|
|
environment:
|
|
|
|
HCLOUD_TOKEN:
|
|
|
|
from_secret: hcloud_token
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
ref:
|
2022-06-20 20:20:34 +00:00
|
|
|
- refs/heads/main
|
2022-01-26 20:02:36 +00:00
|
|
|
- refs/tags/**
|
|
|
|
- refs/pull/**
|
2019-08-25 18:18:43 +00:00
|
|
|
|
|
|
|
depends_on:
|
2021-09-21 20:36:56 +00:00
|
|
|
- linting
|
2019-08-25 18:18:43 +00:00
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
2019-10-18 12:50:04 +00:00
|
|
|
name: documentation
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
2021-09-21 20:36:56 +00: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:
|
2022-06-20 20:20:34 +00:00
|
|
|
- refs/heads/main
|
2020-01-22 21:08:45 +00:00
|
|
|
|
2019-10-18 12:50:04 +00:00
|
|
|
trigger:
|
|
|
|
ref:
|
2022-06-20 20:20:34 +00:00
|
|
|
- refs/heads/main
|
2021-09-21 20:36:56 +00:00
|
|
|
- refs/tags/**
|
|
|
|
- refs/pull/**
|
2019-10-18 12:50:04 +00:00
|
|
|
|
|
|
|
depends_on:
|
2021-09-21 20:36:56 +00:00
|
|
|
- testing-centos7
|
2022-01-26 20:02:36 +00:00
|
|
|
- testing-rocky8
|
2019-10-18 12:50:04 +00:00
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: notification
|
2019-08-25 18:18:43 +00:00
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
clone:
|
|
|
|
disable: true
|
|
|
|
|
|
|
|
steps:
|
2021-09-21 20:36:56 +00:00
|
|
|
- name: matrix
|
|
|
|
image: thegeeklab/drone-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 }}){{#if build.Branch}} ({{ build.Branch }}){{/if}} by {{ commit.Author }}<br/> Message: {{ commit.Message.Title }}"
|
|
|
|
username:
|
|
|
|
from_secret: matrix_username
|
2019-08-25 18:18:43 +00:00
|
|
|
|
|
|
|
trigger:
|
|
|
|
ref:
|
2022-06-20 20:20:34 +00:00
|
|
|
- refs/heads/main
|
2021-09-21 20:36:56 +00:00
|
|
|
- refs/tags/**
|
2019-08-25 18:18:43 +00:00
|
|
|
status:
|
2021-09-21 20:36:56 +00:00
|
|
|
- success
|
|
|
|
- failure
|
2019-08-25 18:18:43 +00:00
|
|
|
|
|
|
|
depends_on:
|
2021-09-21 20:36:56 +00:00
|
|
|
- documentation
|
2019-08-25 18:18:43 +00:00
|
|
|
|
|
|
|
---
|
|
|
|
kind: signature
|
2022-07-02 19:53:35 +00:00
|
|
|
hmac: 4dd8bc10fc95fb2d19c9b0da4d13b8f40a8ba9bf850c357bf76abd27336c6a1b
|
2019-08-25 18:18:43 +00:00
|
|
|
|
|
|
|
...
|