refactor ci pipeline
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Robert Kaussow 2019-10-19 16:00:35 +02:00
parent fc4cf5e2af
commit 5432847341
3 changed files with 159 additions and 83 deletions

View File

@ -1,69 +1,108 @@
local AnsibleVersions(version="latest", package="ansible") = { local PipelineLinting = {
name: "ansible-" + version, kind: "pipeline",
image: "python:3.7", name: "linting",
pull: "always", platform: {
environment: { os: "linux",
PY_COLORS: 1 arch: "amd64",
}, },
commands: [ steps: [
"pip install " + package + " ansible-later~=0.2.0 -qq", {
"git clone https://gitea.rknet.org/ansible/ansible-later-policy.git ~/policy", name: "ansible-later",
"ansible-later -c ~/policy/config.yml" image: "xoxys/ansible-later:latest",
environment: {
PY_COLORS: 1
},
commands: [
"git clone https://gitea.rknet.org/ansible/ansible-later-policy.git ~/policy",
"ansible-later -c ~/policy/config.yml"
],
},
],
trigger: {
ref: ["refs/heads/master", "refs/tags/**", "refs/pull/**"],
},
};
local PipelineDocumentation = {
kind: "pipeline",
name: "documentation",
platform: {
os: "linux",
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",
PY_COLORS: 1
},
},
{
name: "push-to-repo",
image: "plugins/git-action:latest",
settings: {
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: [ depends_on: [
"clone", "linting",
], ],
}; trigger: {
ref: ["refs/heads/master", "refs/tags/**", "refs/pull/**"],
local PipelineLinting = { },
kind: "pipeline", };
name: "linting",
platform: { local PipelineNotification= {
os: "linux", kind: "pipeline",
arch: "amd64", name: "notification",
}, platform: {
steps: [ os: "linux",
AnsibleVersions(version="latest", package="ansible"), arch: "amd64",
AnsibleVersions(version="master", package="git+https://github.com/ansible/ansible.git@devel"), },
], clone: {
trigger: { disable: true,
ref: ["refs/heads/master", "refs/tags/**", "refs/pull/**"], },
}, steps: [
}; {
name: "matrix",
local PipelineNotifications = { image: "plugins/matrix",
kind: "pipeline", settings: {
name: "notifications", homeserver: { "from_secret": "matrix_homeserver" },
platform: { roomid: { "from_secret": "matrix_roomid" },
os: "linux", template: "Status: **{{ build.status }}**<br/> Build: [{{ repo.Owner }}/{{ repo.Name }}]({{ build.link }}) ({{ build.branch }}) by {{ build.author }}<br/> Message: {{ build.message }}",
arch: "amd64", username: { "from_secret": "matrix_username" },
}, password: { "from_secret": "matrix_password" },
clone: { },
disable: true, },
}, ],
steps: [ depends_on: [
{ "documentation",
name: "matrix", ],
image: "plugins/matrix", trigger: {
settings: { status: [ "success", "failure" ],
homeserver: "https://matrix.rknet.org", ref: ["refs/heads/master", "refs/tags/**"],
roomid: "MtidqQXWWAtQcByBhH:rknet.org",
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" },
password: { "from_secret": "matrix_password" },
},
}, },
],
depends_on: [
"linting",
],
trigger: {
status: [ "success", "failure" ],
ref: ["refs/heads/master", "refs/tags/**"],
},
}; };
[ [
PipelineLinting, PipelineLinting,
PipelineNotifications, PipelineDocumentation,
PipelineNotification,
] ]

View File

@ -7,29 +7,13 @@ platform:
arch: amd64 arch: amd64
steps: steps:
- name: ansible-latest - name: ansible-later
pull: always image: xoxys/ansible-later:latest
image: python:3.7
commands: commands:
- pip install ansible ansible-later~=0.2.0 -qq
- git clone https://gitea.rknet.org/ansible/ansible-later-policy.git ~/policy - git clone https://gitea.rknet.org/ansible/ansible-later-policy.git ~/policy
- ansible-later -c ~/policy/config.yml - ansible-later -c ~/policy/config.yml
environment: environment:
PY_COLORS: 1 PY_COLORS: 1
depends_on:
- clone
- name: ansible-master
pull: always
image: python:3.7
commands:
- "pip install git+https://github.com/ansible/ansible.git@devel ansible-later~=0.2.0 -qq"
- git clone https://gitea.rknet.org/ansible/ansible-later-policy.git ~/policy
- ansible-later -c ~/policy/config.yml
environment:
PY_COLORS: 1
depends_on:
- clone
trigger: trigger:
ref: ref:
@ -39,7 +23,54 @@ trigger:
--- ---
kind: pipeline kind: pipeline
name: notifications name: documentation
platform:
os: linux
arch: amd64
steps:
- name: ansible-doctor
image: xoxys/ansible-doctor:latest
environment:
ANSIBLE_DOCTOR_CUSTOM_HEADER: HEADER.md
ANSIBLE_DOCTOR_EXCLUDE_FILES: molecule/
ANSIBLE_DOCTOR_FORCE_OVERWRITE: true
ANSIBLE_DOCTOR_LOG_LEVEL: INFO
PY_COLORS: 1
- name: push-to-repo
image: plugins/git-action:latest
settings:
actions:
- commit
- push
author_email: "shipper@rknet.org"
author_name: DroneShipper
branch: master
message: "[SKIP CI] update readme"
netrc_machine: gitea.rknet.org
netrc_password:
from_secret: gitea_token
netrc_username:
from_secret: gitea_username
remote: https://gitea.rknet.org/ansible/xoxys.update
when:
ref:
- refs/heads/master
trigger:
ref:
- refs/heads/master
- "refs/tags/**"
- "refs/pull/**"
depends_on:
- linting
---
kind: pipeline
name: notification
platform: platform:
os: linux os: linux
@ -52,10 +83,12 @@ steps:
- name: matrix - name: matrix
image: plugins/matrix image: plugins/matrix
settings: settings:
homeserver: https://matrix.rknet.org homeserver:
from_secret: matrix_homeserver
password: password:
from_secret: matrix_password from_secret: matrix_password
roomid: MtidqQXWWAtQcByBhH:rknet.org 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: username:
from_secret: matrix_username from_secret: matrix_username
@ -69,10 +102,10 @@ trigger:
- failure - failure
depends_on: depends_on:
- linting - documentation
--- ---
kind: signature kind: signature
hmac: e8af892af990dc7b107f23e9c2e573a4be5691285d8925ae90138cec276278ad hmac: 0563b25e341275e8df6b60e49553ebb3585684acdf657c849fffee3c55e305fd
... ...

4
HEADER.md Normal file
View File

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