xoxys.postfix_relay/.drone.jsonnet

153 lines
3.3 KiB
Plaintext
Raw Normal View History

2019-10-18 13:12:38 +02:00
local PipelineLinting = {
2020-01-22 22:08:44 +01:00
kind: 'pipeline',
name: 'linting',
platform: {
os: 'linux',
arch: 'amd64',
},
steps: [
{
name: 'ansible-later',
2020-02-21 00:46:35 +01:00
image: 'xoxys/ansible-later',
2020-01-22 22:08:44 +01:00
commands: [
'ansible-later',
],
2019-10-18 13:12:38 +02:00
},
2020-01-22 22:08:44 +01:00
],
trigger: {
ref: ['refs/heads/master', 'refs/tags/**', 'refs/pull/**'],
},
};
2020-01-22 22:08:44 +01:00
local PipelineDeployment(scenario='centos7') = {
kind: 'pipeline',
name: 'testing-' + scenario,
platform: {
os: 'linux',
arch: 'amd64',
},
concurrency: {
limit: 1,
},
workspace: {
base: '/drone/src',
2020-03-21 14:35:14 +01:00
path: '${DRONE_REPO_NAME}',
2020-01-22 22:08:44 +01:00
},
steps: [
{
name: 'ansible-molecule',
2020-02-21 00:46:35 +01:00
image: 'xoxys/molecule:3',
2020-01-22 22:08:44 +01:00
environment: {
DO_API_KEY: { from_secret: 'do_api_key' },
},
commands: [
2020-08-19 18:39:00 +02:00
'molecule test -s ' + scenario,
2020-01-22 22:08:44 +01:00
],
2019-10-18 13:12:38 +02:00
},
2020-01-22 22:08:44 +01:00
],
depends_on: [
'linting',
],
trigger: {
ref: ['refs/heads/master', 'refs/tags/**'],
},
};
2019-10-18 13:12:38 +02:00
local PipelineDocumentation = {
2020-01-22 22:08:44 +01:00
kind: 'pipeline',
name: 'documentation',
platform: {
os: 'linux',
arch: 'amd64',
},
steps: [
{
name: 'generate',
2020-02-21 00:46:35 +01:00
image: 'xoxys/ansible-doctor',
2020-01-22 22:08:44 +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/',
},
2019-10-18 13:12:38 +02:00
},
2020-01-22 22:08:44 +01:00
{
name: 'publish',
2020-02-21 00:46:35 +01:00
image: 'plugins/gh-pages',
2020-01-22 22:08:44 +01:00
settings: {
2020-03-21 14:35:14 +01:00
remote_url: 'https://gitea.rknet.org/ansible/${DRONE_REPO_NAME}',
2020-01-22 22:08:44 +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'],
},
2019-08-24 15:01:30 +02:00
},
2020-01-22 22:08:44 +01:00
{
name: 'trigger',
image: 'plugins/downstream',
settings: {
server: 'https://drone.rknet.org',
token: { from_secret: 'drone_token' },
fork: true,
repositories: [
2020-05-25 23:01:26 +02:00
'ansible/galaxy',
2020-01-22 22:08:44 +01:00
],
},
when: {
ref: ['refs/heads/master'],
},
},
],
trigger: {
ref: ['refs/heads/master', 'refs/tags/**', 'refs/pull/**'],
},
depends_on: [
'testing-centos7',
],
2019-08-24 15:01:30 +02:00
};
2020-01-22 22:08:44 +01:00
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' },
},
},
2020-01-22 22:08:44 +01:00
],
depends_on: [
'documentation',
],
trigger: {
status: ['success', 'failure'],
ref: ['refs/heads/master', 'refs/tags/**'],
},
};
[
2020-01-22 22:08:44 +01:00
PipelineLinting,
PipelineDeployment(scenario='centos7'),
PipelineDocumentation,
PipelineNotification,
]