refactor ci pipeline
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Robert Kaussow 2019-10-18 13:30:31 +02:00
parent 65bc167a69
commit 4e2d8cd47c
6 changed files with 234 additions and 123 deletions

View File

@ -1,107 +1,148 @@
local AnsibleVersions(version="latest", package="ansible") = {
name: "ansible-" + version,
image: "python:3.7",
pull: "always",
environment: {
PY_COLORS: 1
},
commands: [
"pip install " + package + " ansible-later~=0.2.0 -qq",
"git clone https://gitea.rknet.org/ansible/ansible-later-policy.git ~/policy",
"ansible-later -c ~/policy/config.yml"
],
depends_on: [
"clone",
],
};
local PipelineLinting = { local PipelineLinting = {
kind: "pipeline", kind: "pipeline",
name: "linting", name: "linting",
platform: { platform: {
os: "linux", os: "linux",
arch: "amd64", arch: "amd64",
}, },
steps: [ steps: [
AnsibleVersions(version="latest", package="ansible"), {
AnsibleVersions(version="master", package="git+https://github.com/ansible/ansible.git@devel"), name: "ansible-later",
], image: "xoxys/ansible-later:latest",
trigger: { environment: {
ref: ["refs/heads/master", "refs/tags/**", "refs/pull/**"], 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 PipelineDeployment = { local PipelineDeployment = {
kind: "pipeline", kind: "pipeline",
name: "deployment", name: "deployment",
platform: { platform: {
os: "linux", os: "linux",
arch: "amd64", arch: "amd64",
}, },
workspace: { concurrency: {
base: "/drone/src", limit: 1
path: "xoxys.python3" },
}, workspace: {
steps: [ base: "/drone/src",
{ path: "xoxys.python3"
name: "molecule", },
image: "xoxys/molecule:do-linux-amd64", steps: [
pull: "always", {
environment: { name: "ansible-molecule",
DO_API_KEY: { "from_secret": "do_api_key" }, image: "xoxys/molecule:do-linux-amd64",
USER: "root", environment: {
MOLECULE_CUSTOM_MODULES_REPO: "https://gitea.rknet.org/ansible/custom_modules", DO_API_KEY: { "from_secret": "do_api_key" },
MOLECULE_CUSTOM_FILTERS_REPO: "https://gitea.rknet.org/ansible/custom_filters", USER: "root",
PY_COLORS: 1 MOLECULE_CUSTOM_MODULES_REPO: "https://gitea.rknet.org/ansible/custom_modules",
}, MOLECULE_CUSTOM_FILTERS_REPO: "https://gitea.rknet.org/ansible/custom_filters",
commands: [ PY_COLORS: 1
"/bin/bash /docker-entrypoint.sh", },
"molecule test -s default", commands: [
], "/bin/bash /docker-entrypoint.sh",
"molecule test -s default",
],
},
],
depends_on: [
"linting",
],
trigger: {
ref: ["refs/heads/master", "refs/tags/**"],
}, },
],
depends_on: [
"linting",
],
trigger: {
ref: ["refs/heads/master", "refs/tags/**"],
},
}; };
local PipelineNotifications = { local PipelineDocumentation = {
kind: "pipeline", kind: "pipeline",
name: "notifications", name: "documentation",
platform: { platform: {
os: "linux", os: "linux",
arch: "amd64", arch: "amd64",
}, },
clone: { steps: [
disable: true, {
}, name: "ansible-doctor",
steps: [ image: "xoxys/ansible-doctor:latest",
{ environment: {
name: "matrix", ANSIBLE_DOCTOR_LOG_LEVEL: "INFO",
image: "plugins/matrix", ANSIBLE_DOCTOR_FORCE_OVERWRITE: true,
settings: { ANSIBLE_DOCTOR_EXCLUDE_FILES: "molecule/",
homeserver: "https://matrix.rknet.org", ANSIBLE_DOCTOR_CUSTOM_HEADER: "HEADER.md",
roomid: "MtidqQXWWAtQcByBhH:rknet.org", PY_COLORS: 1
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" }, {
}, 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.python3",
netrc_machine: "gitea.rknet.org",
netrc_username: {"from_secret": "gitea_username"},
netrc_password: {"from_secret": "gitea_token"},
},
when: {
ref: ["refs/heads/master"],
},
},
],
depends_on: [
"deployment",
],
trigger: {
ref: ["refs/heads/master", "refs/tags/**", "refs/pull/**"],
},
};
local PipelineNotification= {
kind: "pipeline",
name: "notification",
platform: {
os: "linux",
arch: "amd64",
},
clone: {
disable: true,
},
steps: [
{
name: "matrix",
image: "plugins/matrix",
settings: {
homeserver: { "from_secret": "matrix_homeserver" },
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 }}",
username: { "from_secret": "matrix_username" },
password: { "from_secret": "matrix_password" },
},
},
],
depends_on: [
"documentation",
],
trigger: {
status: [ "success", "failure" ],
ref: ["refs/heads/master", "refs/tags/**"],
}, },
],
depends_on: [
"deployment",
],
trigger: {
status: [ "success", "failure" ],
ref: ["refs/heads/master", "refs/tags/**"],
},
}; };
[ [
PipelineLinting, PipelineLinting,
PipelineDeployment, PipelineDeployment,
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:
@ -45,13 +29,15 @@ platform:
os: linux os: linux
arch: amd64 arch: amd64
concurrency:
limit: 1
workspace: workspace:
base: /drone/src base: /drone/src
path: xoxys.python3 path: xoxys.python3
steps: steps:
- name: molecule - name: ansible-molecule
pull: always
image: xoxys/molecule:do-linux-amd64 image: xoxys/molecule:do-linux-amd64
commands: commands:
- /bin/bash /docker-entrypoint.sh - /bin/bash /docker-entrypoint.sh
@ -74,7 +60,54 @@ depends_on:
--- ---
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.python3
when:
ref:
- refs/heads/master
trigger:
ref:
- refs/heads/master
- "refs/tags/**"
- "refs/pull/**"
depends_on:
- deployment
---
kind: pipeline
name: notification
platform: platform:
os: linux os: linux
@ -87,10 +120,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
@ -104,10 +139,10 @@ trigger:
- failure - failure
depends_on: depends_on:
- deployment - documentation
--- ---
kind: signature kind: signature
hmac: dcbfd67bd82e9f46e08a46d27c123391441d6efe733deb6508125cc5079c3d7e hmac: 7e54586f39e5e24f1b1900880efbb7e13a7a45e9f1fe92838a7792290459fc31
... ...

2
.gitignore vendored
View File

@ -9,5 +9,3 @@ __pycache__/
*.py[cod] *.py[cod]
*$py.class *$py.class
# ---> Molecule
.yamllint

33
.yamllint Normal file
View File

@ -0,0 +1,33 @@
---
# Based on ansible-lint config
extends: default
rules:
braces:
max-spaces-inside: 1
level: error
brackets:
max-spaces-inside: 1
level: error
colons:
max-spaces-after: -1
level: error
commas:
max-spaces-after: -1
level: error
comments: disable
comments-indentation: disable
document-start: disable
empty-lines:
max: 3
level: error
hyphens:
level: error
indentation: disable
key-duplicates: enable
line-length: disable
new-line-at-end-of-file: disable
new-lines:
type: unix
trailing-spaces: disable
truthy: disable

4
HEADER.md Normal file
View File

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

View File

@ -4,7 +4,7 @@ dependency:
driver: driver:
name: digitalocean name: digitalocean
platforms: platforms:
- name: centos7-python3 - name: centos7-python
region_id: fra1 region_id: fra1
image_id: centos-7-x64 image_id: centos-7-x64
size_id: s-1vcpu-1gb size_id: s-1vcpu-1gb