refactor docs
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Robert Kaussow 2020-01-22 22:08:44 +01:00
parent 2328ec526c
commit 0b0f486432
3 changed files with 89 additions and 95 deletions

View File

@ -1,103 +1,102 @@
local PipelineLinting = { local PipelineLinting = {
kind: "pipeline", kind: 'pipeline',
name: "linting", name: 'linting',
platform: { platform: {
os: "linux", os: 'linux',
arch: "amd64", arch: 'amd64',
}, },
steps: [ steps: [
{ {
name: "ansible-later", name: 'ansible-later',
image: "xoxys/ansible-later:latest", image: 'xoxys/ansible-later:latest',
commands: [ commands: [
"ansible-later", 'ansible-later',
], ],
},
],
trigger: {
ref: ["refs/heads/master", "refs/tags/**", "refs/pull/**"],
}, },
],
trigger: {
ref: ['refs/heads/master', 'refs/tags/**', 'refs/pull/**'],
},
}; };
local PipelineDocumentation = { local PipelineDocumentation = {
kind: "pipeline", kind: 'pipeline',
name: "documentation", name: 'documentation',
platform: { platform: {
os: "linux", os: 'linux',
arch: "amd64", arch: 'amd64',
},
steps: [
{
name: 'ansible-doctor',
image: 'xoxys/ansible-doctor:latest',
environment: {
ANSIBLE_DOCTOR_LOG_LEVEL: 'INFO',
ANSIBLE_DOCTOR_FORCE_OVERWRITE: true,
ANSIBLE_DOCTOR_EXCLUDE_FILES: 'molecule/',
ANSIBLE_DOCTOR_CUSTOM_HEADER: 'HEADER.md',
},
}, },
steps: [ {
{ name: 'push-to-repo',
name: "ansible-doctor", image: 'plugins/git-action:latest',
image: "xoxys/ansible-doctor:latest", settings: {
environment: { actions: ['commit', 'push'],
ANSIBLE_DOCTOR_LOG_LEVEL: "INFO", author_email: 'shipper@rknet.org',
ANSIBLE_DOCTOR_FORCE_OVERWRITE: true, author_name: 'DroneShipper',
ANSIBLE_DOCTOR_EXCLUDE_FILES: "molecule/", branch: 'master',
ANSIBLE_DOCTOR_CUSTOM_HEADER: "HEADER.md", message: '[SKIP CI] update readme',
}, netrc_machine: 'gitea.rknet.org',
}, netrc_username: { from_secret: 'gitea_username' },
{ netrc_password: { from_secret: 'gitea_token' },
name: "push-to-repo", },
image: "plugins/git-action:latest", when: {
settings: { ref: ['refs/heads/master'],
actions: ["commit", "push"], },
author_email: "shipper@rknet.org",
author_name: "DroneShipper",
branch: "master",
message: "[SKIP CI] update readme",
remote: "https://gitea.rknet.org/ansible/xoxys.update",
netrc_machine: "gitea.rknet.org",
netrc_username: {"from_secret": "gitea_username"},
netrc_password: {"from_secret": "gitea_token"},
},
when: {
ref: ["refs/heads/master"],
},
},
],
depends_on: [
"linting",
],
trigger: {
ref: ["refs/heads/master", "refs/tags/**", "refs/pull/**"],
}, },
],
depends_on: [
'linting',
],
trigger: {
ref: ['refs/heads/master', 'refs/tags/**', 'refs/pull/**'],
},
}; };
local PipelineNotification= { local PipelineNotification = {
kind: "pipeline", kind: 'pipeline',
name: "notification", name: 'notification',
platform: { platform: {
os: "linux", os: 'linux',
arch: "amd64", arch: 'amd64',
}, },
clone: { clone: {
disable: true, disable: true,
}, },
steps: [ steps: [
{ {
name: "matrix", name: 'matrix',
image: "plugins/matrix", image: 'plugins/matrix',
settings: { settings: {
homeserver: { "from_secret": "matrix_homeserver" }, homeserver: { from_secret: 'matrix_homeserver' },
roomid: { "from_secret": "matrix_roomid" }, 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 }}", 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" }, username: { from_secret: 'matrix_username' },
password: { "from_secret": "matrix_password" }, password: { from_secret: 'matrix_password' },
}, },
},
],
depends_on: [
"documentation",
],
trigger: {
status: [ "success", "failure" ],
ref: ["refs/heads/master", "refs/tags/**"],
}, },
],
depends_on: [
'documentation',
],
trigger: {
status: ['success', 'failure'],
ref: ['refs/heads/master', 'refs/tags/**'],
},
}; };
[ [
PipelineLinting, PipelineLinting,
PipelineDocumentation, PipelineDocumentation,
PipelineNotification, PipelineNotification,
] ]

View File

@ -50,7 +50,6 @@ steps:
from_secret: gitea_token from_secret: gitea_token
netrc_username: netrc_username:
from_secret: gitea_username from_secret: gitea_username
remote: https://gitea.rknet.org/ansible/xoxys.update
when: when:
ref: ref:
- refs/heads/master - refs/heads/master
@ -102,6 +101,6 @@ depends_on:
--- ---
kind: signature kind: signature
hmac: 5f63a1f7efb946ff1a28ef8c860a1ac2fbbc28cc944128569b76aea63ffec708 hmac: 8d1a5e1b51cf34515cebf444393c7735bb48a0cad184cb69ffafe8e1f678fd20
... ...

View File

@ -1,4 +0,0 @@
# xoxys.update
[![Build Status](https://drone.rknet.org/api/badges/ansible/xoxys.update/status.svg)](https://drone.rknet.org/ansible/xoxys.update)