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

This commit is contained in:
Robert Kaussow 2020-01-22 22:36:03 +01:00
parent fe4d94c5d1
commit acc88a5f0a
3 changed files with 120 additions and 126 deletions

View File

@ -1,132 +1,131 @@
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: { trigger: {
ref: ["refs/heads/master", "refs/tags/**", "refs/pull/**"], ref: ['refs/heads/master', 'refs/tags/**', 'refs/pull/**'],
}, },
}; };
local PipelineDeployment = { local PipelineDeployment(scenario='centos7') = {
kind: "pipeline", kind: 'pipeline',
name: "deployment", name: 'testing-' + scenario,
platform: { platform: {
os: "linux", os: 'linux',
arch: "amd64", arch: 'amd64',
}, },
concurrency: { concurrency: {
limit: 1 limit: 1,
}, },
workspace: { workspace: {
base: "/drone/src", base: '/drone/src',
path: "xoxys.matrix" path: 'xoxys.matrix',
}, },
steps: [ steps: [
{ {
name: "ansible-molecule", name: 'ansible-molecule',
image: "xoxys/molecule:latest", image: 'xoxys/molecule:latest',
environment: { environment: {
DO_API_KEY: { "from_secret": "do_api_key" }, DO_API_KEY: { from_secret: 'do_api_key' },
USER: "root", USER: 'root',
MOLECULE_CUSTOM_MODULES_REPO: "https://gitea.rknet.org/ansible/custom_modules", MOLECULE_CUSTOM_MODULES_REPO: 'https://gitea.rknet.org/ansible/custom_modules',
MOLECULE_CUSTOM_FILTERS_REPO: "https://gitea.rknet.org/ansible/custom_filters", MOLECULE_CUSTOM_FILTERS_REPO: 'https://gitea.rknet.org/ansible/custom_filters',
}, },
commands: [ commands: [
"molecule test -s default", 'molecule test -s' + scenario,
], ],
}, },
], ],
depends_on: [ depends_on: [
"linting", 'linting',
], ],
trigger: { trigger: {
ref: ["refs/heads/master", "refs/tags/**"], ref: ['refs/heads/master', 'refs/tags/**'],
}, },
}; };
local PipelineDocumentation = { local PipelineDocumentation = {
kind: "pipeline", kind: 'pipeline',
name: "documentation", name: 'documentation',
platform: { platform: {
os: "linux", os: 'linux',
arch: "amd64", arch: 'amd64',
}, },
steps: [ steps: [
{ {
name: "ansible-doctor", name: 'ansible-doctor',
image: "xoxys/ansible-doctor:latest", image: 'xoxys/ansible-doctor:latest',
environment: { environment: {
ANSIBLE_DOCTOR_LOG_LEVEL: "INFO", ANSIBLE_DOCTOR_LOG_LEVEL: 'INFO',
ANSIBLE_DOCTOR_FORCE_OVERWRITE: true, ANSIBLE_DOCTOR_FORCE_OVERWRITE: true,
ANSIBLE_DOCTOR_EXCLUDE_FILES: "molecule/", ANSIBLE_DOCTOR_EXCLUDE_FILES: 'molecule/',
ANSIBLE_DOCTOR_CUSTOM_HEADER: "HEADER.md", ANSIBLE_DOCTOR_CUSTOM_HEADER: 'HEADER.md',
}, },
}, },
{ {
name: "push-to-repo", name: 'push-to-repo',
image: "plugins/git-action:latest", image: 'plugins/git-action:latest',
settings: { settings: {
actions: ["commit", "push"], actions: ['commit', 'push'],
author_email: "shipper@rknet.org", author_email: 'shipper@rknet.org',
author_name: "DroneShipper", author_name: 'DroneShipper',
branch: "master", branch: 'master',
message: "[SKIP CI] update readme", message: '[SKIP CI] update readme',
remote: "https://gitea.rknet.org/ansible/xoxys.matrix", netrc_machine: 'gitea.rknet.org',
netrc_machine: "gitea.rknet.org", netrc_username: { from_secret: 'gitea_username' },
netrc_username: {"from_secret": "gitea_username"}, netrc_password: { from_secret: 'gitea_token' },
netrc_password: {"from_secret": "gitea_token"},
}, },
when: { when: {
ref: ["refs/heads/master"], ref: ['refs/heads/master'],
}, },
}, },
], ],
trigger: { trigger: {
ref: ["refs/heads/master", "refs/tags/**", "refs/pull/**"], 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: [ depends_on: [
"documentation", 'documentation',
], ],
trigger: { trigger: {
status: [ "success", "failure" ], status: ['success', 'failure'],
ref: ["refs/heads/master", "refs/tags/**"], ref: ['refs/heads/master', 'refs/tags/**'],
}, },
}; };

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.matrix
when: when:
ref: ref:
- refs/heads/master - refs/heads/master
@ -99,6 +98,6 @@ depends_on:
--- ---
kind: signature kind: signature
hmac: d5adee42edbe725a89a25e490964ebaf21eb04ad122a00acf0b6e69211d3a2f7 hmac: 12195a066cda727bc895d6b5f3642dc68a35165f0e1bfa1e3f938136fdbe5c62
... ...

View File

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