xoxys.jellyfin/.drone.jsonnet

160 lines
3.5 KiB
Plaintext
Raw Permalink Normal View History

2019-10-17 20:58:18 +02:00
local PipelineLinting = {
2020-01-22 22:36:03 +01:00
kind: 'pipeline',
name: 'linting',
platform: {
os: 'linux',
arch: 'amd64',
},
steps: [
{
name: 'ansible-later',
2020-09-27 23:24:13 +02:00
image: 'thegeeklab/ansible-later',
2020-01-22 22:36:03 +01:00
commands: [
'ansible-later',
],
2019-10-17 20:58:18 +02:00
},
2021-06-07 22:28:50 +02:00
{
name: 'python-format',
2022-12-21 09:13:56 +01:00
image: 'python:3.11',
2021-06-07 22:28:50 +02:00
environment: {
PY_COLORS: 1,
},
commands: [
'pip install -qq yapf',
2022-12-21 09:13:56 +01:00
'[ -z "$(find . -type f -name *.py)" ] || (yapf -rd ./)',
2021-06-07 22:28:50 +02:00
],
},
{
name: 'python-flake8',
2022-12-21 09:13:56 +01:00
image: 'python:3.11',
2021-06-07 22:28:50 +02:00
environment: {
PY_COLORS: 1,
},
commands: [
'pip install -qq flake8',
'flake8',
],
},
2020-01-22 22:36:03 +01:00
],
trigger: {
ref: ['refs/heads/main', 'refs/tags/**', 'refs/pull/**'],
2020-01-22 22:36:03 +01:00
},
2019-07-30 23:02:40 +02:00
};
2020-01-22 22:36:03 +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:36:03 +01:00
},
steps: [
{
name: 'ansible-molecule',
2022-12-21 09:13:56 +01:00
image: 'thegeeklab/molecule:4',
2020-01-22 22:36:03 +01:00
environment: {
2020-10-02 09:32:12 +02:00
HCLOUD_TOKEN: { from_secret: 'hcloud_token' },
2020-01-22 22:36:03 +01:00
},
commands: [
2020-08-19 18:39:02 +02:00
'molecule test -s ' + scenario,
2020-01-22 22:36:03 +01:00
],
2019-10-17 20:58:18 +02:00
},
2020-01-22 22:36:03 +01:00
],
depends_on: [
'linting',
],
trigger: {
ref: ['refs/heads/main', 'refs/tags/**'],
2020-01-22 22:36:03 +01:00
},
2019-07-30 23:02:40 +02:00
};
2019-10-17 20:58:18 +02:00
local PipelineDocumentation = {
2020-01-22 22:36:03 +01:00
kind: 'pipeline',
name: 'documentation',
platform: {
os: 'linux',
arch: 'amd64',
},
steps: [
{
name: 'generate',
2020-09-27 23:24:13 +02:00
image: 'thegeeklab/ansible-doctor',
2020-01-22 22:36: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/',
},
2019-10-17 20:58:18 +02:00
},
2020-01-22 22:36:03 +01:00
{
name: 'publish',
2020-02-21 00:46:35 +01:00
image: 'plugins/gh-pages',
2020-01-22 22:36:03 +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:36: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/main'],
2020-01-22 22:36:03 +01:00
},
2019-07-30 23:02:40 +02:00
},
2020-01-22 22:36:03 +01:00
],
trigger: {
ref: ['refs/heads/main', 'refs/tags/**', 'refs/pull/**'],
2020-01-22 22:36:03 +01:00
},
depends_on: [
'testing-centos7',
],
2019-07-30 23:02:40 +02:00
};
2020-01-22 22:36:03 +01:00
local PipelineNotification = {
kind: 'pipeline',
name: 'notification',
platform: {
os: 'linux',
arch: 'amd64',
},
clone: {
disable: true,
},
steps: [
{
name: 'matrix',
2021-09-21 22:36:36 +02:00
image: 'thegeeklab/drone-matrix',
2020-01-22 22:36:03 +01:00
settings: {
homeserver: { from_secret: 'matrix_homeserver' },
roomid: { from_secret: 'matrix_roomid' },
2023-02-08 21:16:04 +01:00
template: 'Status: **{{ .Build.Status }}**<br/> Build: [{{ .Repo.Owner }}/{{ .Repo.Name }}]({{ .Build.Link }}){{ if .Build.Branch }} ({{ .Build.Branch }}){{ end }} by {{ .Commit.Author }}<br/> Message: {{ .Commit.Message.Title }}',
2020-01-22 22:36:03 +01:00
username: { from_secret: 'matrix_username' },
password: { from_secret: 'matrix_password' },
},
2019-07-30 23:02:40 +02:00
},
2020-01-22 22:36:03 +01:00
],
depends_on: [
'documentation',
],
trigger: {
status: ['success', 'failure'],
ref: ['refs/heads/main', 'refs/tags/**'],
2020-01-22 22:36:03 +01:00
},
2019-07-30 23:02:40 +02:00
};
[
2020-01-22 22:36:03 +01:00
PipelineLinting,
PipelineDeployment(scenario='centos7'),
PipelineDocumentation,
PipelineNotification,
2019-07-30 23:02:40 +02:00
]