cookiecutter-ansible-role/{{cookiecutter.author}}.{{c.../.drone.jsonnet

138 lines
3.1 KiB
Plaintext
Raw Normal View History

2020-01-30 09:13:03 +01:00
local PipelineLinting = {
kind: 'pipeline',
name: 'linting',
platform: {
os: 'linux',
arch: 'amd64',
},
steps: [
{
name: 'ansible-later',
2020-10-03 13:11:44 +02:00
image: 'thegeeklab/ansible-later',
2020-01-30 09:13:03 +01:00
commands: [
'ansible-later',
],
},
],
trigger: {
ref: ['refs/heads/master', 'refs/tags/**', 'refs/pull/**'],
},
};
local PipelineDeployment(scenario='{{ cookiecutter.molecule_scenario | replace("-", "") }}') = {
kind: 'pipeline',
name: 'testing-' + scenario,
platform: {
os: 'linux',
arch: 'amd64',
},
concurrency: {
limit: 1,
},
workspace: {
base: '/drone/src',
2020-03-21 14:46:00 +01:00
path: '${DRONE_REPO_NAME}',
2020-01-30 09:13:03 +01:00
},
steps: [
{
name: 'ansible-molecule',
2020-10-03 13:11:44 +02:00
image: 'thegeeklab/molecule:3',
2020-01-30 09:13:03 +01:00
environment: {
2020-10-03 13:11:44 +02:00
HCLOUD_TOKEN: { from_secret: 'hcloud_token' },
2020-01-30 09:13:03 +01:00
},
commands: [
2020-10-03 13:11:44 +02:00
'molecule test -s ' + scenario,
2020-01-30 09:13:03 +01:00
],
},
],
depends_on: [
'linting',
],
trigger: {
ref: ['refs/heads/master', 'refs/tags/**'],
},
};
local PipelineDocumentation = {
kind: 'pipeline',
name: 'documentation',
platform: {
os: 'linux',
arch: 'amd64',
},
steps: [
{
name: 'generate',
2020-10-03 13:11:44 +02:00
image: 'thegeeklab/ansible-doctor',
2020-01-30 09:13:03 +01:00
environment: {
ANSIBLE_DOCTOR_LOG_LEVEL: 'INFO',
ANSIBLE_DOCTOR_FORCE_OVERWRITE: true,
ANSIBLE_DOCTOR_EXCLUDE_FILES: 'molecule/',
ANSIBLE_DOCTOR_TEMPLATE: 'hugo-book',
ANSIBLE_DOCTOR_ROLE_NAME: '${DRONE_REPO_NAME#*.}',
ANSIBLE_DOCTOR_OUTPUT_DIR: '_docs/',
},
},
{
name: 'publish',
2020-03-21 14:46:00 +01:00
image: 'plugins/gh-pages',
2020-01-30 09:13:03 +01:00
settings: {
2020-03-21 14:46:00 +01:00
remote_url: 'https://gitea.rknet.org/ansible/${DRONE_REPO_NAME}',
2020-01-30 09:13:03 +01:00
netrc_machine: 'gitea.rknet.org',
username: { from_secret: 'gitea_username' },
password: { from_secret: 'gitea_token' },
pages_directory: '_docs/',
target_branch: 'docs',
},
when: {
ref: ['refs/heads/master'],
},
},
],
trigger: {
ref: ['refs/heads/master', 'refs/tags/**', 'refs/pull/**'],
},
depends_on: [
'testing-{{ cookiecutter.molecule_scenario | replace("-", "") }}',
],
};
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: '{% raw %}Status: **{{ build.status }}**<br/> Build: [{{ repo.Owner }}/{{ repo.Name }}]({{ build.link }}) ({{ build.branch }}) by {{ build.author }}<br/> Message: {{ build.message }}{% endraw %}',
username: { from_secret: 'matrix_username' },
password: { from_secret: 'matrix_password' },
},
},
],
depends_on: [
'documentation',
],
trigger: {
status: ['success', 'failure'],
ref: ['refs/heads/master', 'refs/tags/**'],
},
};
[
PipelineLinting,
PipelineDeployment(scenario='{{ cookiecutter.molecule_scenario | replace("-", "") }}'),
PipelineDocumentation,
PipelineNotification,
]