2021-10-03 14:10:36 +00:00
|
|
|
local PythonVersion(pyversion='3.7') = {
|
2020-03-01 17:42:29 +00:00
|
|
|
name: 'python' + std.strReplace(pyversion, '.', '') + '-pytest',
|
|
|
|
image: 'python:' + pyversion,
|
|
|
|
environment: {
|
|
|
|
PY_COLORS: 1,
|
|
|
|
},
|
|
|
|
commands: [
|
2020-12-23 22:48:56 +00:00
|
|
|
'pip install poetry poetry-dynamic-versioning -qq',
|
2021-02-19 08:47:24 +00:00
|
|
|
'poetry config experimental.new-installer false',
|
2021-02-18 10:18:30 +00:00
|
|
|
'poetry install',
|
2020-11-15 20:52:35 +00:00
|
|
|
'poetry run pytest dockertidy --cov=dockertidy --cov-append --no-cov-on-fail',
|
2020-11-15 21:06:32 +00:00
|
|
|
'poetry version',
|
|
|
|
'poetry run docker-tidy --help',
|
2020-03-01 17:42:29 +00:00
|
|
|
],
|
|
|
|
depends_on: [
|
2020-12-28 16:43:33 +00:00
|
|
|
'fetch',
|
2020-03-01 17:42:29 +00:00
|
|
|
],
|
|
|
|
};
|
|
|
|
|
|
|
|
local PipelineLint = {
|
|
|
|
kind: 'pipeline',
|
|
|
|
name: 'lint',
|
|
|
|
platform: {
|
|
|
|
os: 'linux',
|
|
|
|
arch: 'amd64',
|
|
|
|
},
|
|
|
|
steps: [
|
2020-12-30 14:42:34 +00:00
|
|
|
{
|
2023-02-12 13:46:35 +00:00
|
|
|
name: 'check-format',
|
2022-11-24 20:35:40 +00:00
|
|
|
image: 'python:3.11',
|
2020-12-30 14:42:34 +00:00
|
|
|
environment: {
|
|
|
|
PY_COLORS: 1,
|
|
|
|
},
|
|
|
|
commands: [
|
|
|
|
'git fetch -tq',
|
|
|
|
'pip install poetry poetry-dynamic-versioning -qq',
|
2021-02-19 08:47:24 +00:00
|
|
|
'poetry config experimental.new-installer false',
|
2021-02-18 10:18:30 +00:00
|
|
|
'poetry install',
|
2020-12-30 14:42:34 +00:00
|
|
|
'poetry run yapf -dr ./dockertidy',
|
|
|
|
],
|
|
|
|
},
|
2020-03-01 17:42:29 +00:00
|
|
|
{
|
2023-02-12 13:46:35 +00:00
|
|
|
name: 'check-coding',
|
2022-11-24 20:35:40 +00:00
|
|
|
image: 'python:3.11',
|
2020-03-01 17:42:29 +00:00
|
|
|
environment: {
|
|
|
|
PY_COLORS: 1,
|
|
|
|
},
|
|
|
|
commands: [
|
2020-12-23 23:23:12 +00:00
|
|
|
'git fetch -tq',
|
2020-12-23 22:48:56 +00:00
|
|
|
'pip install poetry poetry-dynamic-versioning -qq',
|
2021-02-19 08:47:24 +00:00
|
|
|
'poetry config experimental.new-installer false',
|
2021-02-18 10:18:30 +00:00
|
|
|
'poetry install',
|
2023-02-12 13:46:35 +00:00
|
|
|
'poetry run ruff ./dockertidy',
|
2020-03-01 17:42:29 +00:00
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
trigger: {
|
2020-12-30 14:02:23 +00:00
|
|
|
ref: ['refs/heads/main', 'refs/tags/**', 'refs/pull/**'],
|
2020-03-01 17:42:29 +00:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
local PipelineTest = {
|
2020-03-15 22:19:26 +00:00
|
|
|
kind: 'pipeline',
|
|
|
|
name: 'test',
|
|
|
|
platform: {
|
|
|
|
os: 'linux',
|
|
|
|
arch: 'amd64',
|
|
|
|
},
|
|
|
|
steps: [
|
2020-12-23 23:33:18 +00:00
|
|
|
{
|
|
|
|
name: 'fetch',
|
2022-11-24 20:35:40 +00:00
|
|
|
image: 'python:3.11',
|
2020-12-23 23:33:18 +00:00
|
|
|
commands: [
|
|
|
|
'git fetch -tq',
|
|
|
|
],
|
|
|
|
},
|
2020-04-06 20:36:08 +00:00
|
|
|
PythonVersion(pyversion='3.7'),
|
|
|
|
PythonVersion(pyversion='3.8'),
|
2020-11-15 20:52:35 +00:00
|
|
|
PythonVersion(pyversion='3.9'),
|
2021-10-07 07:52:57 +00:00
|
|
|
PythonVersion(pyversion='3.10'),
|
2022-11-02 12:01:40 +00:00
|
|
|
PythonVersion(pyversion='3.11'),
|
2020-03-15 22:19:26 +00:00
|
|
|
{
|
|
|
|
name: 'codecov',
|
2022-11-24 20:35:40 +00:00
|
|
|
image: 'python:3.11',
|
2020-03-15 22:19:26 +00:00
|
|
|
environment: {
|
|
|
|
PY_COLORS: 1,
|
|
|
|
CODECOV_TOKEN: { from_secret: 'codecov_token' },
|
|
|
|
},
|
|
|
|
commands: [
|
2020-04-06 20:29:37 +00:00
|
|
|
'pip install codecov -qq',
|
|
|
|
'codecov --required -X gcov',
|
2020-03-15 22:19:26 +00:00
|
|
|
],
|
2020-04-06 20:40:14 +00:00
|
|
|
depends_on: [
|
|
|
|
'python37-pytest',
|
|
|
|
'python38-pytest',
|
2020-11-15 20:55:08 +00:00
|
|
|
'python39-pytest',
|
2021-10-07 07:52:57 +00:00
|
|
|
'python310-pytest',
|
2022-11-24 20:35:40 +00:00
|
|
|
'python311-pytest',
|
2020-04-06 20:40:14 +00:00
|
|
|
],
|
2020-03-15 22:19:26 +00:00
|
|
|
},
|
|
|
|
],
|
|
|
|
depends_on: [
|
2020-11-15 20:55:08 +00:00
|
|
|
'lint',
|
2020-03-15 22:19:26 +00:00
|
|
|
],
|
|
|
|
trigger: {
|
2020-12-30 14:02:23 +00:00
|
|
|
ref: ['refs/heads/main', 'refs/tags/**', 'refs/pull/**'],
|
2020-03-15 22:19:26 +00:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2020-03-01 17:42:29 +00:00
|
|
|
local PipelineBuildPackage = {
|
|
|
|
kind: 'pipeline',
|
|
|
|
name: 'build-package',
|
|
|
|
platform: {
|
|
|
|
os: 'linux',
|
|
|
|
arch: 'amd64',
|
|
|
|
},
|
|
|
|
steps: [
|
|
|
|
{
|
|
|
|
name: 'build',
|
2022-11-24 20:35:40 +00:00
|
|
|
image: 'python:3.11',
|
2020-03-01 17:42:29 +00:00
|
|
|
commands: [
|
2020-12-23 23:23:12 +00:00
|
|
|
'git fetch -tq',
|
2020-11-15 20:52:35 +00:00
|
|
|
'pip install poetry poetry-dynamic-versioning -qq',
|
|
|
|
'poetry build',
|
2020-03-01 17:42:29 +00:00
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'checksum',
|
|
|
|
image: 'alpine',
|
|
|
|
commands: [
|
|
|
|
'cd dist/ && sha256sum * > ../sha256sum.txt',
|
|
|
|
],
|
|
|
|
},
|
2021-03-03 19:49:56 +00:00
|
|
|
{
|
2021-05-09 20:09:31 +00:00
|
|
|
name: 'changelog-generate',
|
2021-03-03 19:49:56 +00:00
|
|
|
image: 'thegeeklab/git-chglog',
|
|
|
|
commands: [
|
|
|
|
'git fetch -tq',
|
|
|
|
'git-chglog --no-color --no-emoji -o CHANGELOG.md ${DRONE_TAG:---next-tag unreleased unreleased}',
|
|
|
|
],
|
|
|
|
},
|
2021-05-09 20:09:31 +00:00
|
|
|
{
|
|
|
|
name: 'changelog-format',
|
|
|
|
image: 'thegeeklab/alpine-tools',
|
|
|
|
commands: [
|
|
|
|
'prettier CHANGELOG.md',
|
|
|
|
'prettier -w CHANGELOG.md',
|
|
|
|
],
|
|
|
|
},
|
2020-03-01 17:42:29 +00:00
|
|
|
{
|
|
|
|
name: 'publish-github',
|
|
|
|
image: 'plugins/github-release',
|
|
|
|
settings: {
|
|
|
|
overwrite: true,
|
|
|
|
api_key: { from_secret: 'github_token' },
|
|
|
|
files: ['dist/*', 'sha256sum.txt'],
|
|
|
|
title: '${DRONE_TAG}',
|
|
|
|
note: 'CHANGELOG.md',
|
|
|
|
},
|
|
|
|
when: {
|
|
|
|
ref: ['refs/tags/**'],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'publish-pypi',
|
2022-11-24 20:35:40 +00:00
|
|
|
image: 'python:3.11',
|
2020-11-15 20:52:35 +00:00
|
|
|
commands: [
|
2020-12-23 23:23:12 +00:00
|
|
|
'git fetch -tq',
|
2020-11-15 20:52:35 +00:00
|
|
|
'pip install poetry poetry-dynamic-versioning -qq',
|
2020-12-28 14:05:49 +00:00
|
|
|
'poetry publish -n',
|
2020-11-15 20:52:35 +00:00
|
|
|
],
|
|
|
|
environment: {
|
2020-12-23 23:23:12 +00:00
|
|
|
POETRY_HTTP_BASIC_PYPI_USERNAME: { from_secret: 'pypi_username' },
|
|
|
|
POETRY_HTTP_BASIC_PYPI_PASSWORD: { from_secret: 'pypi_password' },
|
2020-03-01 17:42:29 +00:00
|
|
|
},
|
|
|
|
when: {
|
|
|
|
ref: ['refs/tags/**'],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
depends_on: [
|
2023-02-12 13:46:35 +00:00
|
|
|
'test',
|
2020-03-01 17:42:29 +00:00
|
|
|
],
|
|
|
|
trigger: {
|
2020-12-30 14:02:23 +00:00
|
|
|
ref: ['refs/heads/main', 'refs/tags/**', 'refs/pull/**'],
|
2020-03-01 17:42:29 +00:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2023-01-16 08:10:35 +00:00
|
|
|
local PipelineBuildContainer = {
|
2020-03-01 17:42:29 +00:00
|
|
|
kind: 'pipeline',
|
2023-01-16 08:10:35 +00:00
|
|
|
name: 'build-container',
|
2020-03-01 17:42:29 +00:00
|
|
|
platform: {
|
|
|
|
os: 'linux',
|
2023-01-16 08:10:35 +00:00
|
|
|
arch: 'amd64',
|
2020-03-01 17:42:29 +00:00
|
|
|
},
|
2023-01-08 15:12:23 +00:00
|
|
|
steps: [
|
|
|
|
{
|
|
|
|
name: 'build',
|
|
|
|
image: 'python:3.11',
|
|
|
|
commands: [
|
|
|
|
'git fetch -tq',
|
|
|
|
'pip install poetry poetry-dynamic-versioning -qq',
|
|
|
|
'poetry build',
|
|
|
|
],
|
|
|
|
},
|
2020-03-01 17:42:29 +00:00
|
|
|
{
|
|
|
|
name: 'dryrun',
|
2023-02-09 18:42:09 +00:00
|
|
|
image: 'thegeeklab/drone-docker-buildx:23',
|
2020-03-01 17:42:29 +00:00
|
|
|
settings: {
|
|
|
|
dry_run: true,
|
2023-01-16 08:10:35 +00:00
|
|
|
dockerfile: 'Dockerfile.multiarch',
|
2020-09-25 17:48:40 +00:00
|
|
|
repo: 'thegeeklab/${DRONE_REPO_NAME}',
|
2023-01-16 08:10:35 +00:00
|
|
|
platforms: [
|
|
|
|
'linux/amd64',
|
|
|
|
'linux/arm64',
|
|
|
|
],
|
|
|
|
provenance: false,
|
2020-03-01 17:42:29 +00:00
|
|
|
},
|
2021-02-18 09:09:57 +00:00
|
|
|
depends_on: ['build'],
|
2020-03-01 17:42:29 +00:00
|
|
|
when: {
|
|
|
|
ref: ['refs/pull/**'],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2020-09-25 17:48:40 +00:00
|
|
|
name: 'publish-dockerhub',
|
2023-02-09 18:42:09 +00:00
|
|
|
image: 'thegeeklab/drone-docker-buildx:23',
|
2020-03-01 17:42:29 +00:00
|
|
|
settings: {
|
|
|
|
auto_tag: true,
|
2023-01-16 08:10:35 +00:00
|
|
|
dockerfile: 'Dockerfile.multiarch',
|
2020-09-25 17:48:40 +00:00
|
|
|
repo: 'thegeeklab/${DRONE_REPO_NAME}',
|
2020-03-01 17:42:29 +00:00
|
|
|
username: { from_secret: 'docker_username' },
|
|
|
|
password: { from_secret: 'docker_password' },
|
2023-01-16 08:10:35 +00:00
|
|
|
platforms: [
|
|
|
|
'linux/amd64',
|
|
|
|
'linux/arm64',
|
|
|
|
],
|
|
|
|
provenance: false,
|
2020-03-01 17:42:29 +00:00
|
|
|
},
|
|
|
|
when: {
|
2020-12-30 14:02:23 +00:00
|
|
|
ref: ['refs/heads/main', 'refs/tags/**'],
|
2020-03-01 17:42:29 +00:00
|
|
|
},
|
2020-09-25 17:48:40 +00:00
|
|
|
depends_on: ['dryrun'],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'publish-quay',
|
2023-02-09 18:42:09 +00:00
|
|
|
image: 'thegeeklab/drone-docker-buildx:23',
|
2020-09-25 17:48:40 +00:00
|
|
|
settings: {
|
|
|
|
auto_tag: true,
|
2023-01-16 08:10:35 +00:00
|
|
|
dockerfile: 'Dockerfile.multiarch',
|
2020-09-25 17:48:40 +00:00
|
|
|
registry: 'quay.io',
|
|
|
|
repo: 'quay.io/thegeeklab/${DRONE_REPO_NAME}',
|
|
|
|
username: { from_secret: 'quay_username' },
|
|
|
|
password: { from_secret: 'quay_password' },
|
2023-01-16 08:10:35 +00:00
|
|
|
platforms: [
|
|
|
|
'linux/amd64',
|
|
|
|
'linux/arm64',
|
|
|
|
],
|
|
|
|
provenance: false,
|
2020-09-25 17:48:40 +00:00
|
|
|
},
|
|
|
|
when: {
|
2020-12-30 14:02:23 +00:00
|
|
|
ref: ['refs/heads/main', 'refs/tags/**'],
|
2020-09-25 17:48:40 +00:00
|
|
|
},
|
|
|
|
depends_on: ['dryrun'],
|
2020-03-01 17:42:29 +00:00
|
|
|
},
|
|
|
|
],
|
|
|
|
depends_on: [
|
2023-02-12 13:46:35 +00:00
|
|
|
'test',
|
2020-03-01 17:42:29 +00:00
|
|
|
],
|
|
|
|
trigger: {
|
2020-12-30 14:02:23 +00:00
|
|
|
ref: ['refs/heads/main', 'refs/tags/**', 'refs/pull/**'],
|
2020-03-01 17:42:29 +00:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
local PipelineDocs = {
|
|
|
|
kind: 'pipeline',
|
|
|
|
name: 'docs',
|
|
|
|
platform: {
|
|
|
|
os: 'linux',
|
|
|
|
arch: 'amd64',
|
|
|
|
},
|
|
|
|
concurrency: {
|
|
|
|
limit: 1,
|
|
|
|
},
|
|
|
|
steps: [
|
|
|
|
{
|
|
|
|
name: 'assets',
|
2020-11-17 13:01:42 +00:00
|
|
|
image: 'thegeeklab/alpine-tools',
|
2020-03-01 17:42:29 +00:00
|
|
|
commands: [
|
2020-11-17 13:01:42 +00:00
|
|
|
'make doc',
|
2020-03-01 17:42:29 +00:00
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
2020-06-03 20:40:20 +00:00
|
|
|
name: 'markdownlint',
|
2021-01-03 20:58:12 +00:00
|
|
|
image: 'thegeeklab/markdownlint-cli',
|
2020-03-01 17:42:29 +00:00
|
|
|
commands: [
|
2020-12-26 15:56:06 +00:00
|
|
|
"markdownlint 'docs/content/**/*.md' 'README.md' 'CONTRIBUTING.md'",
|
2020-03-01 17:42:29 +00:00
|
|
|
],
|
2020-06-03 20:40:20 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'spellcheck',
|
2022-07-17 18:54:35 +00:00
|
|
|
image: 'thegeeklab/alpine-tools',
|
2020-06-03 20:40:20 +00:00
|
|
|
commands: [
|
2020-12-26 15:56:06 +00:00
|
|
|
"spellchecker --files 'docs/content/**/*.md' 'README.md' 'CONTRIBUTING.md' -d .dictionary -p spell indefinite-article syntax-urls --no-suggestions",
|
2020-06-03 20:40:20 +00:00
|
|
|
],
|
|
|
|
environment: {
|
|
|
|
FORCE_COLOR: true,
|
|
|
|
NPM_CONFIG_LOGLEVEL: 'error',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'testbuild',
|
2022-11-05 08:20:01 +00:00
|
|
|
image: 'thegeeklab/hugo:0.105.0',
|
2020-06-03 20:40:20 +00:00
|
|
|
commands: [
|
2022-05-20 14:25:12 +00:00
|
|
|
'hugo --panicOnWarning -s docs/ -b http://localhost:8000/',
|
2020-06-03 20:40:20 +00:00
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'link-validation',
|
2020-09-25 17:48:40 +00:00
|
|
|
image: 'thegeeklab/link-validator',
|
2020-06-03 20:40:20 +00:00
|
|
|
commands: [
|
2022-11-04 11:58:11 +00:00
|
|
|
'link-validator --color=always --rate-limit 10',
|
2020-06-03 20:40:20 +00:00
|
|
|
],
|
|
|
|
environment: {
|
|
|
|
LINK_VALIDATOR_BASE_DIR: 'docs/public',
|
2022-11-04 11:58:11 +00:00
|
|
|
LINK_VALIDATOR_RETRIES: '3',
|
2020-06-03 20:40:20 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'build',
|
2022-11-05 08:20:01 +00:00
|
|
|
image: 'thegeeklab/hugo:0.105.0',
|
2020-06-03 20:40:20 +00:00
|
|
|
commands: [
|
2022-03-05 15:57:05 +00:00
|
|
|
'hugo --panicOnWarning -s docs/',
|
2020-06-03 20:40:20 +00:00
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'beautify',
|
2022-07-17 18:54:35 +00:00
|
|
|
image: 'thegeeklab/alpine-tools',
|
2020-06-03 20:40:20 +00:00
|
|
|
commands: [
|
|
|
|
"html-beautify -r -f 'docs/public/**/*.html'",
|
|
|
|
],
|
|
|
|
environment: {
|
|
|
|
FORCE_COLOR: true,
|
|
|
|
NPM_CONFIG_LOGLEVEL: 'error',
|
|
|
|
},
|
2020-03-01 17:42:29 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'publish',
|
2022-07-26 12:47:52 +00:00
|
|
|
image: 'thegeeklab/drone-s3-sync',
|
2020-03-01 17:42:29 +00:00
|
|
|
settings: {
|
2020-05-26 19:38:16 +00:00
|
|
|
access_key: { from_secret: 's3_access_key' },
|
|
|
|
bucket: 'geekdocs',
|
|
|
|
delete: true,
|
|
|
|
endpoint: 'https://sp.rknet.org',
|
|
|
|
path_style: true,
|
|
|
|
secret_key: { from_secret: 's3_secret_access_key' },
|
|
|
|
source: 'docs/public/',
|
|
|
|
strip_prefix: 'docs/public/',
|
|
|
|
target: '/${DRONE_REPO_NAME}',
|
2020-03-01 17:42:29 +00:00
|
|
|
},
|
2020-11-17 13:01:42 +00:00
|
|
|
when: {
|
2020-12-30 14:02:23 +00:00
|
|
|
ref: ['refs/heads/main', 'refs/tags/**'],
|
2020-11-17 13:01:42 +00:00
|
|
|
},
|
2020-03-01 17:42:29 +00:00
|
|
|
},
|
|
|
|
],
|
|
|
|
depends_on: [
|
|
|
|
'build-package',
|
2023-01-16 08:10:35 +00:00
|
|
|
'build-container',
|
2020-03-01 17:42:29 +00:00
|
|
|
],
|
|
|
|
trigger: {
|
2020-12-30 14:02:23 +00:00
|
|
|
ref: ['refs/heads/main', 'refs/tags/**', 'refs/pull/**'],
|
2020-03-01 17:42:29 +00:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
local PipelineNotifications = {
|
|
|
|
kind: 'pipeline',
|
|
|
|
name: 'notifications',
|
|
|
|
platform: {
|
|
|
|
os: 'linux',
|
|
|
|
arch: 'amd64',
|
|
|
|
},
|
|
|
|
steps: [
|
2020-09-25 17:48:40 +00:00
|
|
|
{
|
|
|
|
name: 'pushrm-dockerhub',
|
|
|
|
image: 'chko/docker-pushrm:1',
|
2020-03-01 17:42:29 +00:00
|
|
|
environment: {
|
2020-09-25 17:48:40 +00:00
|
|
|
DOCKER_PASS: {
|
|
|
|
from_secret: 'docker_password',
|
|
|
|
},
|
|
|
|
DOCKER_USER: {
|
|
|
|
from_secret: 'docker_username',
|
|
|
|
},
|
|
|
|
PUSHRM_FILE: 'README.md',
|
2020-09-27 12:06:35 +00:00
|
|
|
PUSHRM_SHORT: 'Keep docker hosts tidy',
|
2020-09-25 17:48:40 +00:00
|
|
|
PUSHRM_TARGET: 'thegeeklab/${DRONE_REPO_NAME}',
|
|
|
|
},
|
|
|
|
when: {
|
|
|
|
status: ['success'],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'pushrm-quay',
|
|
|
|
image: 'chko/docker-pushrm:1',
|
|
|
|
environment: {
|
|
|
|
APIKEY__QUAY_IO: {
|
|
|
|
from_secret: 'quay_token',
|
|
|
|
},
|
|
|
|
PUSHRM_FILE: 'README.md',
|
|
|
|
PUSHRM_TARGET: 'quay.io/thegeeklab/${DRONE_REPO_NAME}',
|
|
|
|
},
|
|
|
|
when: {
|
|
|
|
status: ['success'],
|
2020-03-01 17:42:29 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'matrix',
|
2021-09-19 20:09:49 +00:00
|
|
|
image: 'thegeeklab/drone-matrix',
|
2020-03-01 17:42:29 +00:00
|
|
|
settings: {
|
|
|
|
homeserver: { from_secret: 'matrix_homeserver' },
|
|
|
|
roomid: { from_secret: 'matrix_roomid' },
|
2023-02-08 20:57:33 +00: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-03-01 17:42:29 +00:00
|
|
|
username: { from_secret: 'matrix_username' },
|
|
|
|
password: { from_secret: 'matrix_password' },
|
|
|
|
},
|
2020-03-07 14:52:02 +00:00
|
|
|
when: {
|
|
|
|
status: ['success', 'failure'],
|
|
|
|
},
|
2020-03-01 17:42:29 +00:00
|
|
|
},
|
|
|
|
],
|
|
|
|
depends_on: [
|
|
|
|
'docs',
|
|
|
|
],
|
|
|
|
trigger: {
|
2020-12-30 14:02:23 +00:00
|
|
|
ref: ['refs/heads/main', 'refs/tags/**'],
|
2020-03-01 17:42:29 +00:00
|
|
|
status: ['success', 'failure'],
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
[
|
|
|
|
PipelineLint,
|
|
|
|
PipelineTest,
|
|
|
|
PipelineBuildPackage,
|
2023-01-16 08:10:35 +00:00
|
|
|
PipelineBuildContainer,
|
2020-03-01 17:42:29 +00:00
|
|
|
PipelineDocs,
|
|
|
|
PipelineNotifications,
|
|
|
|
]
|