This commit is contained in:
parent
7bc6091062
commit
ea1b448bc8
144
.drone.jsonnet
144
.drone.jsonnet
@ -1,141 +1,155 @@
|
|||||||
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.mongodb"
|
path: 'xoxys.mongodb',
|
||||||
},
|
},
|
||||||
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: 'generate',
|
||||||
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_TEMPLATE: 'hugo-book',
|
||||||
|
ANSIBLE_DOCTOR_ROLE_NAME: '${DRONE_REPO_NAME#*.}',
|
||||||
|
ANSIBLE_DOCTOR_OUTPUT_DIR: '_docs/',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "push-to-repo",
|
name: 'publish',
|
||||||
image: "plugins/git-action:latest",
|
image: 'plugins/gh-pages:latest',
|
||||||
settings: {
|
settings: {
|
||||||
actions: ["commit", "push"],
|
remote_url: 'https://gitea.rknet.org/ansible/xoxys.mongodb',
|
||||||
author_email: "shipper@rknet.org",
|
netrc_machine: 'gitea.rknet.org',
|
||||||
author_name: "DroneShipper",
|
username: { from_secret: 'gitea_username' },
|
||||||
branch: "master",
|
password: { from_secret: 'gitea_token' },
|
||||||
message: "[SKIP CI] update readme",
|
pages_directory: '_docs/',
|
||||||
remote: "https://gitea.rknet.org/ansible/xoxys.mongodb",
|
target_branch: 'docs',
|
||||||
netrc_machine: "gitea.rknet.org",
|
|
||||||
netrc_username: {"from_secret": "gitea_username"},
|
|
||||||
netrc_password: {"from_secret": "gitea_token"},
|
|
||||||
},
|
},
|
||||||
when: {
|
when: {
|
||||||
ref: ["refs/heads/master"],
|
ref: ['refs/heads/master'],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: 'trigger',
|
||||||
|
image: 'plugins/downstream',
|
||||||
|
settings: {
|
||||||
|
server: 'https://drone.rknet.org',
|
||||||
|
token: { from_secret: 'drone_token' },
|
||||||
|
fork: true,
|
||||||
|
repositories: [
|
||||||
|
'ansible/ansible-galaxy',
|
||||||
],
|
],
|
||||||
depends_on: [
|
},
|
||||||
"deployment",
|
when: {
|
||||||
|
ref: ['refs/heads/master'],
|
||||||
|
},
|
||||||
|
},
|
||||||
],
|
],
|
||||||
trigger: {
|
trigger: {
|
||||||
ref: ["refs/heads/master", "refs/tags/**", "refs/pull/**"],
|
ref: ['refs/heads/master', 'refs/tags/**', 'refs/pull/**'],
|
||||||
},
|
},
|
||||||
|
depends_on: [
|
||||||
|
'testing-centos7',
|
||||||
|
],
|
||||||
};
|
};
|
||||||
|
|
||||||
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/**'],
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
[
|
[
|
||||||
PipelineLinting,
|
PipelineLinting,
|
||||||
PipelineDeployment,
|
PipelineDeployment(scenario='centos7'),
|
||||||
PipelineDocumentation,
|
PipelineDocumentation,
|
||||||
PipelineNotification,
|
PipelineNotification,
|
||||||
]
|
]
|
||||||
|
46
.drone.yml
46
.drone.yml
@ -20,7 +20,7 @@ trigger:
|
|||||||
|
|
||||||
---
|
---
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
name: deployment
|
name: testing-centos7
|
||||||
|
|
||||||
platform:
|
platform:
|
||||||
os: linux
|
os: linux
|
||||||
@ -37,7 +37,7 @@ steps:
|
|||||||
- name: ansible-molecule
|
- name: ansible-molecule
|
||||||
image: xoxys/molecule:latest
|
image: xoxys/molecule:latest
|
||||||
commands:
|
commands:
|
||||||
- molecule test -s default
|
- molecule test -scentos7
|
||||||
environment:
|
environment:
|
||||||
DO_API_KEY:
|
DO_API_KEY:
|
||||||
from_secret: do_api_key
|
from_secret: do_api_key
|
||||||
@ -62,30 +62,40 @@ platform:
|
|||||||
arch: amd64
|
arch: amd64
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: ansible-doctor
|
- name: generate
|
||||||
image: xoxys/ansible-doctor:latest
|
image: xoxys/ansible-doctor:latest
|
||||||
environment:
|
environment:
|
||||||
ANSIBLE_DOCTOR_CUSTOM_HEADER: HEADER.md
|
|
||||||
ANSIBLE_DOCTOR_EXCLUDE_FILES: molecule/
|
ANSIBLE_DOCTOR_EXCLUDE_FILES: molecule/
|
||||||
ANSIBLE_DOCTOR_FORCE_OVERWRITE: true
|
ANSIBLE_DOCTOR_FORCE_OVERWRITE: true
|
||||||
ANSIBLE_DOCTOR_LOG_LEVEL: INFO
|
ANSIBLE_DOCTOR_LOG_LEVEL: INFO
|
||||||
|
ANSIBLE_DOCTOR_OUTPUT_DIR: _docs/
|
||||||
|
ANSIBLE_DOCTOR_ROLE_NAME: ${DRONE_REPO_NAME#*.}
|
||||||
|
ANSIBLE_DOCTOR_TEMPLATE: hugo-book
|
||||||
|
|
||||||
- name: push-to-repo
|
- name: publish
|
||||||
image: plugins/git-action:latest
|
image: plugins/gh-pages:latest
|
||||||
settings:
|
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_machine: gitea.rknet.org
|
||||||
netrc_password:
|
pages_directory: _docs/
|
||||||
|
password:
|
||||||
from_secret: gitea_token
|
from_secret: gitea_token
|
||||||
netrc_username:
|
remote_url: https://gitea.rknet.org/ansible/xoxys.mongodb
|
||||||
|
target_branch: docs
|
||||||
|
username:
|
||||||
from_secret: gitea_username
|
from_secret: gitea_username
|
||||||
remote: https://gitea.rknet.org/ansible/xoxys.mongodb
|
when:
|
||||||
|
ref:
|
||||||
|
- refs/heads/master
|
||||||
|
|
||||||
|
- name: trigger
|
||||||
|
image: plugins/downstream
|
||||||
|
settings:
|
||||||
|
fork: true
|
||||||
|
repositories:
|
||||||
|
- ansible/ansible-galaxy
|
||||||
|
server: https://drone.rknet.org
|
||||||
|
token:
|
||||||
|
from_secret: drone_token
|
||||||
when:
|
when:
|
||||||
ref:
|
ref:
|
||||||
- refs/heads/master
|
- refs/heads/master
|
||||||
@ -97,7 +107,7 @@ trigger:
|
|||||||
- refs/pull/**
|
- refs/pull/**
|
||||||
|
|
||||||
depends_on:
|
depends_on:
|
||||||
- deployment
|
- testing-centos7
|
||||||
|
|
||||||
---
|
---
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
@ -137,6 +147,6 @@ depends_on:
|
|||||||
|
|
||||||
---
|
---
|
||||||
kind: signature
|
kind: signature
|
||||||
hmac: bcf47934f27c383b5e42b882f3b568a87c93e63ac78ae92477db6cedb444b6a9
|
hmac: 552a75948dc638df91aa56d34c16c82a67e532a31f162aec27e777de678c9293
|
||||||
|
|
||||||
...
|
...
|
||||||
|
Loading…
Reference in New Issue
Block a user