2019-11-09 15:15:28 +00:00
|
|
|
local PipelineLinting = {
|
2020-01-22 21:08:45 +00:00
|
|
|
kind: 'pipeline',
|
|
|
|
name: 'linting',
|
|
|
|
platform: {
|
|
|
|
os: 'linux',
|
|
|
|
arch: 'amd64',
|
|
|
|
},
|
|
|
|
steps: [
|
|
|
|
{
|
|
|
|
name: 'ansible-later',
|
2020-09-27 21:24:17 +00:00
|
|
|
image: 'thegeeklab/ansible-later',
|
2020-01-22 21:08:45 +00:00
|
|
|
commands: [
|
|
|
|
'ansible-later',
|
|
|
|
],
|
2019-11-09 15:15:28 +00:00
|
|
|
},
|
2021-06-07 20:29:01 +00:00
|
|
|
{
|
|
|
|
name: 'python-format',
|
|
|
|
image: 'python:3.9',
|
|
|
|
environment: {
|
|
|
|
PY_COLORS: 1,
|
|
|
|
},
|
|
|
|
commands: [
|
|
|
|
'pip install -qq yapf',
|
2021-06-07 22:26:40 +00:00
|
|
|
'[ -z "$(find . -type f -name *.py)" ] || (yapf -rd ./)',
|
2021-06-07 20:29:01 +00:00
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'python-flake8',
|
|
|
|
image: 'python:3.9',
|
|
|
|
environment: {
|
|
|
|
PY_COLORS: 1,
|
|
|
|
},
|
|
|
|
commands: [
|
|
|
|
'pip install -qq flake8',
|
|
|
|
'flake8',
|
|
|
|
],
|
|
|
|
},
|
2020-01-22 21:08:45 +00:00
|
|
|
],
|
|
|
|
trigger: {
|
|
|
|
ref: ['refs/heads/master', 'refs/tags/**', 'refs/pull/**'],
|
|
|
|
},
|
2019-11-09 15:15:28 +00:00
|
|
|
};
|
|
|
|
|
2020-01-22 21:08:45 +00:00
|
|
|
local PipelineDeployment(scenario='centos7') = {
|
|
|
|
kind: 'pipeline',
|
|
|
|
name: 'testing-' + scenario,
|
|
|
|
platform: {
|
|
|
|
os: 'linux',
|
|
|
|
arch: 'amd64',
|
|
|
|
},
|
|
|
|
concurrency: {
|
|
|
|
limit: 1,
|
|
|
|
},
|
|
|
|
workspace: {
|
|
|
|
base: '/drone/src',
|
2020-03-21 13:35:14 +00:00
|
|
|
path: '${DRONE_REPO_NAME}',
|
2020-01-22 21:08:45 +00:00
|
|
|
},
|
|
|
|
steps: [
|
|
|
|
{
|
|
|
|
name: 'ansible-molecule',
|
2020-09-27 21:24:17 +00:00
|
|
|
image: 'thegeeklab/molecule:3',
|
2020-01-22 21:08:45 +00:00
|
|
|
environment: {
|
2020-10-02 07:32:15 +00:00
|
|
|
HCLOUD_TOKEN: { from_secret: 'hcloud_token' },
|
2020-01-22 21:08:45 +00:00
|
|
|
},
|
|
|
|
commands: [
|
2020-08-19 16:39:05 +00:00
|
|
|
'molecule test -s ' + scenario,
|
2020-01-22 21:08:45 +00:00
|
|
|
],
|
2019-11-09 15:15:28 +00:00
|
|
|
},
|
2020-01-22 21:08:45 +00:00
|
|
|
],
|
|
|
|
depends_on: [
|
|
|
|
'linting',
|
|
|
|
],
|
|
|
|
trigger: {
|
|
|
|
ref: ['refs/heads/master', 'refs/tags/**'],
|
|
|
|
},
|
2019-11-09 15:15:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
local PipelineDocumentation = {
|
2020-01-22 21:08:45 +00:00
|
|
|
kind: 'pipeline',
|
|
|
|
name: 'documentation',
|
|
|
|
platform: {
|
|
|
|
os: 'linux',
|
|
|
|
arch: 'amd64',
|
|
|
|
},
|
|
|
|
steps: [
|
|
|
|
{
|
|
|
|
name: 'generate',
|
2020-09-27 21:24:17 +00:00
|
|
|
image: 'thegeeklab/ansible-doctor',
|
2020-01-22 21:08:45 +00:00
|
|
|
environment: {
|
|
|
|
ANSIBLE_DOCTOR_LOG_LEVEL: 'INFO',
|
|
|
|
ANSIBLE_DOCTOR_FORCE_OVERWRITE: true,
|
|
|
|
ANSIBLE_DOCTOR_EXCLUDE_FILES: 'molecule/',
|
|
|
|
ANSIBLE_DOCTOR_TEMPLATE: 'hugo-book',
|
|
|
|
ANSIBLE_DOCTOR_ROLE_NAME: '${DRONE_REPO_NAME#*.}',
|
|
|
|
ANSIBLE_DOCTOR_OUTPUT_DIR: '_docs/',
|
|
|
|
},
|
2019-11-09 15:15:28 +00:00
|
|
|
},
|
2020-01-22 21:08:45 +00:00
|
|
|
{
|
|
|
|
name: 'publish',
|
2020-02-20 23:46:35 +00:00
|
|
|
image: 'plugins/gh-pages',
|
2020-01-22 21:08:45 +00:00
|
|
|
settings: {
|
2020-03-21 13:35:14 +00:00
|
|
|
remote_url: 'https://gitea.rknet.org/ansible/${DRONE_REPO_NAME}',
|
2020-01-22 21:08:45 +00:00
|
|
|
netrc_machine: 'gitea.rknet.org',
|
|
|
|
username: { from_secret: 'gitea_username' },
|
|
|
|
password: { from_secret: 'gitea_token' },
|
|
|
|
pages_directory: '_docs/',
|
|
|
|
target_branch: 'docs',
|
|
|
|
},
|
|
|
|
when: {
|
|
|
|
ref: ['refs/heads/master'],
|
|
|
|
},
|
2019-11-09 15:15:28 +00:00
|
|
|
},
|
2020-01-22 21:08:45 +00:00
|
|
|
],
|
|
|
|
trigger: {
|
|
|
|
ref: ['refs/heads/master', 'refs/tags/**', 'refs/pull/**'],
|
|
|
|
},
|
|
|
|
depends_on: [
|
|
|
|
'testing-centos7',
|
|
|
|
],
|
2019-11-09 15:15:28 +00:00
|
|
|
};
|
|
|
|
|
2020-01-22 21:08:45 +00:00
|
|
|
local PipelineNotification = {
|
|
|
|
kind: 'pipeline',
|
|
|
|
name: 'notification',
|
|
|
|
platform: {
|
|
|
|
os: 'linux',
|
|
|
|
arch: 'amd64',
|
|
|
|
},
|
|
|
|
clone: {
|
|
|
|
disable: true,
|
|
|
|
},
|
|
|
|
steps: [
|
|
|
|
{
|
|
|
|
name: 'matrix',
|
2021-09-21 20:36:44 +00:00
|
|
|
image: 'thegeeklab/drone-matrix',
|
2020-01-22 21:08:45 +00:00
|
|
|
settings: {
|
|
|
|
homeserver: { from_secret: 'matrix_homeserver' },
|
|
|
|
roomid: { from_secret: 'matrix_roomid' },
|
2021-09-21 20:36:44 +00:00
|
|
|
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 }}',
|
2020-01-22 21:08:45 +00:00
|
|
|
username: { from_secret: 'matrix_username' },
|
|
|
|
password: { from_secret: 'matrix_password' },
|
|
|
|
},
|
2019-11-09 15:15:28 +00:00
|
|
|
},
|
2020-01-22 21:08:45 +00:00
|
|
|
],
|
|
|
|
depends_on: [
|
|
|
|
'documentation',
|
|
|
|
],
|
|
|
|
trigger: {
|
|
|
|
status: ['success', 'failure'],
|
|
|
|
ref: ['refs/heads/master', 'refs/tags/**'],
|
|
|
|
},
|
2019-11-09 15:15:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
[
|
2020-01-22 21:08:45 +00:00
|
|
|
PipelineLinting,
|
|
|
|
PipelineDeployment(scenario='centos7'),
|
|
|
|
PipelineDocumentation,
|
|
|
|
PipelineNotification,
|
2019-11-09 15:15:28 +00:00
|
|
|
]
|