2021-11-16 08:36:24 +00:00
|
|
|
local PythonVersion(pyversion='3.8') = {
|
2020-06-03 11:19:07 +00:00
|
|
|
name: 'python' + std.strReplace(pyversion, '.', '') + '-pytest',
|
2020-01-16 10:29:09 +00:00
|
|
|
image: 'python:' + pyversion,
|
|
|
|
environment: {
|
|
|
|
PY_COLORS: 1,
|
|
|
|
},
|
|
|
|
commands: [
|
2020-12-28 15:21:51 +00:00
|
|
|
'pip install poetry poetry-dynamic-versioning -qq',
|
2021-02-19 08:48:31 +00:00
|
|
|
'poetry config experimental.new-installer false',
|
2021-10-11 20:34:34 +00:00
|
|
|
'poetry install -E ansible-core',
|
2021-01-01 15:28:55 +00:00
|
|
|
'poetry run pytest',
|
2020-12-28 15:21:51 +00:00
|
|
|
'poetry version',
|
|
|
|
'poetry run ansible-later --help',
|
2020-01-16 10:29:09 +00:00
|
|
|
],
|
|
|
|
depends_on: [
|
2020-12-28 17:05:00 +00:00
|
|
|
'fetch',
|
2020-01-16 10:29:09 +00:00
|
|
|
],
|
2019-02-25 16:18:10 +00:00
|
|
|
};
|
|
|
|
|
2019-10-10 15:58:58 +00:00
|
|
|
local PipelineLint = {
|
2020-01-16 10:29:09 +00:00
|
|
|
kind: 'pipeline',
|
|
|
|
name: 'lint',
|
|
|
|
platform: {
|
|
|
|
os: 'linux',
|
|
|
|
arch: 'amd64',
|
|
|
|
},
|
|
|
|
steps: [
|
2020-12-30 14:44:56 +00:00
|
|
|
{
|
|
|
|
name: 'yapf',
|
2021-10-07 07:52:48 +00:00
|
|
|
image: 'python:3.10',
|
2020-12-30 14:44:56 +00:00
|
|
|
environment: {
|
|
|
|
PY_COLORS: 1,
|
|
|
|
},
|
|
|
|
commands: [
|
|
|
|
'git fetch -tq',
|
|
|
|
'pip install poetry poetry-dynamic-versioning -qq',
|
2021-02-19 08:48:31 +00:00
|
|
|
'poetry config experimental.new-installer false',
|
2021-02-18 10:18:30 +00:00
|
|
|
'poetry install',
|
2020-12-30 14:44:56 +00:00
|
|
|
'poetry run yapf -dr ./ansiblelater',
|
|
|
|
],
|
|
|
|
},
|
2020-01-16 10:29:09 +00:00
|
|
|
{
|
|
|
|
name: 'flake8',
|
2021-10-07 07:52:48 +00:00
|
|
|
image: 'python:3.10',
|
2020-01-16 10:29:09 +00:00
|
|
|
environment: {
|
|
|
|
PY_COLORS: 1,
|
|
|
|
},
|
|
|
|
commands: [
|
2020-12-28 15:21:51 +00:00
|
|
|
'git fetch -tq',
|
|
|
|
'pip install poetry poetry-dynamic-versioning -qq',
|
2021-10-11 20:34:34 +00:00
|
|
|
'poetry install -E ansible-core',
|
2020-12-28 15:21:51 +00:00
|
|
|
'poetry run flake8 ./ansiblelater',
|
2020-01-16 10:29:09 +00:00
|
|
|
],
|
2019-10-10 15:58:58 +00:00
|
|
|
},
|
2020-01-16 10:29:09 +00:00
|
|
|
],
|
|
|
|
trigger: {
|
2020-12-30 14:11:26 +00:00
|
|
|
ref: ['refs/heads/main', 'refs/tags/**', 'refs/pull/**'],
|
2020-01-16 10:29:09 +00:00
|
|
|
},
|
2019-10-10 15:58:58 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
local PipelineTest = {
|
2020-01-16 10:29:09 +00:00
|
|
|
kind: 'pipeline',
|
|
|
|
name: 'test',
|
2019-02-25 16:18:10 +00:00
|
|
|
platform: {
|
2020-01-16 10:29:09 +00:00
|
|
|
os: 'linux',
|
|
|
|
arch: 'amd64',
|
2019-02-25 16:18:10 +00:00
|
|
|
},
|
|
|
|
steps: [
|
2020-12-28 15:21:51 +00:00
|
|
|
{
|
|
|
|
name: 'fetch',
|
2021-10-07 07:52:48 +00:00
|
|
|
image: 'python:3.10',
|
2020-12-28 15:21:51 +00:00
|
|
|
commands: [
|
|
|
|
'git fetch -tq',
|
|
|
|
],
|
|
|
|
},
|
2020-02-03 23:12:42 +00:00
|
|
|
PythonVersion(pyversion='3.8'),
|
2020-11-13 13:28:26 +00:00
|
|
|
PythonVersion(pyversion='3.9'),
|
2021-10-07 07:52:48 +00:00
|
|
|
PythonVersion(pyversion='3.10'),
|
2019-03-22 09:29:06 +00:00
|
|
|
{
|
2020-01-16 10:29:09 +00:00
|
|
|
name: 'codecov',
|
2021-10-07 07:52:48 +00:00
|
|
|
image: 'python:3.10',
|
2019-03-22 09:29:06 +00:00
|
|
|
environment: {
|
|
|
|
PY_COLORS: 1,
|
2020-01-16 10:29:09 +00:00
|
|
|
CODECOV_TOKEN: { from_secret: 'codecov_token' },
|
2019-03-22 09:29:06 +00:00
|
|
|
},
|
|
|
|
commands: [
|
2020-04-05 12:33:43 +00:00
|
|
|
'pip install codecov -qq',
|
|
|
|
'codecov --required -X gcov',
|
2019-03-22 09:29:06 +00:00
|
|
|
],
|
|
|
|
depends_on: [
|
2020-06-03 11:21:17 +00:00
|
|
|
'python38-pytest',
|
2020-12-28 15:28:23 +00:00
|
|
|
'python39-pytest',
|
2021-10-07 07:52:48 +00:00
|
|
|
'python310-pytest',
|
2019-03-22 09:29:06 +00:00
|
|
|
],
|
2020-01-16 10:29:09 +00:00
|
|
|
},
|
2019-02-25 16:18:10 +00:00
|
|
|
],
|
2019-10-10 15:58:58 +00:00
|
|
|
depends_on: [
|
2020-01-16 10:29:09 +00:00
|
|
|
'lint',
|
2019-10-10 15:58:58 +00:00
|
|
|
],
|
2019-03-22 09:29:06 +00:00
|
|
|
trigger: {
|
2020-12-30 14:11:26 +00:00
|
|
|
ref: ['refs/heads/main', 'refs/tags/**', 'refs/pull/**'],
|
2019-03-22 09:29:06 +00:00
|
|
|
},
|
2019-02-25 16:18:10 +00:00
|
|
|
};
|
|
|
|
|
2019-10-10 15:58:58 +00:00
|
|
|
local PipelineSecurity = {
|
2020-01-16 10:29:09 +00:00
|
|
|
kind: 'pipeline',
|
|
|
|
name: 'security',
|
|
|
|
platform: {
|
|
|
|
os: 'linux',
|
|
|
|
arch: 'amd64',
|
|
|
|
},
|
|
|
|
steps: [
|
|
|
|
{
|
|
|
|
name: 'bandit',
|
2021-10-07 07:52:48 +00:00
|
|
|
image: 'python:3.10',
|
2020-01-16 10:29:09 +00:00
|
|
|
environment: {
|
|
|
|
PY_COLORS: 1,
|
|
|
|
},
|
|
|
|
commands: [
|
2020-12-28 15:21:51 +00:00
|
|
|
'git fetch -tq',
|
|
|
|
'pip install poetry poetry-dynamic-versioning -qq',
|
2021-10-11 20:34:34 +00:00
|
|
|
'poetry install -E ansible-core',
|
2020-12-28 15:21:51 +00:00
|
|
|
'poetry run bandit -r ./ansiblelater -x ./ansiblelater/test',
|
2020-01-16 10:29:09 +00:00
|
|
|
],
|
2019-10-10 15:58:58 +00:00
|
|
|
},
|
2020-01-16 10:29:09 +00:00
|
|
|
],
|
|
|
|
depends_on: [
|
|
|
|
'test',
|
|
|
|
],
|
|
|
|
trigger: {
|
2020-12-30 14:11:26 +00:00
|
|
|
ref: ['refs/heads/main', 'refs/tags/**', 'refs/pull/**'],
|
2020-01-16 10:29:09 +00:00
|
|
|
},
|
2019-10-10 15:58:58 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
local PipelineBuildPackage = {
|
2020-01-16 10:29:09 +00:00
|
|
|
kind: 'pipeline',
|
|
|
|
name: 'build-package',
|
|
|
|
platform: {
|
|
|
|
os: 'linux',
|
|
|
|
arch: 'amd64',
|
|
|
|
},
|
|
|
|
steps: [
|
|
|
|
{
|
|
|
|
name: 'build',
|
2021-10-07 07:52:48 +00:00
|
|
|
image: 'python:3.10',
|
2020-01-16 10:29:09 +00:00
|
|
|
commands: [
|
2020-12-28 15:21:51 +00:00
|
|
|
'git fetch -tq',
|
|
|
|
'pip install poetry poetry-dynamic-versioning -qq',
|
|
|
|
'poetry build',
|
2020-01-16 10:29:09 +00:00
|
|
|
],
|
2019-10-10 15:58:58 +00:00
|
|
|
},
|
2020-01-16 10:29:09 +00:00
|
|
|
{
|
|
|
|
name: 'checksum',
|
|
|
|
image: 'alpine',
|
|
|
|
commands: [
|
|
|
|
'cd dist/ && sha256sum * > ../sha256sum.txt',
|
|
|
|
],
|
2019-10-10 15:58:58 +00:00
|
|
|
},
|
2021-03-23 20:10:17 +00:00
|
|
|
{
|
2021-05-09 21:01:09 +00:00
|
|
|
name: 'changelog-generate',
|
2021-03-23 20:10:17 +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 21:01:09 +00:00
|
|
|
{
|
|
|
|
name: 'changelog-format',
|
|
|
|
image: 'thegeeklab/alpine-tools',
|
|
|
|
commands: [
|
|
|
|
'prettier CHANGELOG.md',
|
|
|
|
'prettier -w CHANGELOG.md',
|
|
|
|
],
|
|
|
|
},
|
2020-01-16 10:29:09 +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',
|
2021-10-07 07:52:48 +00:00
|
|
|
image: 'python:3.10',
|
2020-12-28 15:21:51 +00:00
|
|
|
commands: [
|
|
|
|
'git fetch -tq',
|
|
|
|
'pip install poetry poetry-dynamic-versioning -qq',
|
|
|
|
'poetry publish -n',
|
|
|
|
],
|
|
|
|
environment: {
|
|
|
|
POETRY_HTTP_BASIC_PYPI_USERNAME: { from_secret: 'pypi_username' },
|
|
|
|
POETRY_HTTP_BASIC_PYPI_PASSWORD: { from_secret: 'pypi_password' },
|
2020-01-16 10:29:09 +00:00
|
|
|
},
|
|
|
|
when: {
|
|
|
|
ref: ['refs/tags/**'],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
depends_on: [
|
|
|
|
'security',
|
|
|
|
],
|
|
|
|
trigger: {
|
2020-12-30 14:11:26 +00:00
|
|
|
ref: ['refs/heads/main', 'refs/tags/**', 'refs/pull/**'],
|
2020-01-16 10:29:09 +00:00
|
|
|
},
|
2019-10-10 15:58:58 +00:00
|
|
|
};
|
|
|
|
|
2020-01-16 10:29:09 +00:00
|
|
|
local PipelineBuildContainer(arch='amd64') = {
|
2021-02-19 08:48:31 +00:00
|
|
|
local build = if arch == 'arm' then [{
|
|
|
|
name: 'build',
|
2021-10-07 07:52:48 +00:00
|
|
|
image: 'python:3.10-alpine',
|
2021-02-19 08:48:31 +00:00
|
|
|
commands: [
|
2021-06-30 07:01:26 +00:00
|
|
|
'apk add -Uq --no-cache build-base openssl-dev libffi-dev musl-dev python3-dev git cargo',
|
2021-02-19 08:48:31 +00:00
|
|
|
'git fetch -tq',
|
|
|
|
'pip install poetry poetry-dynamic-versioning -qq',
|
|
|
|
'poetry build',
|
|
|
|
],
|
|
|
|
environment: {
|
|
|
|
CARGO_NET_GIT_FETCH_WITH_CLI: true,
|
|
|
|
},
|
|
|
|
}] else [{
|
|
|
|
name: 'build',
|
2021-10-07 07:52:48 +00:00
|
|
|
image: 'python:3.10',
|
2021-02-19 08:48:31 +00:00
|
|
|
commands: [
|
|
|
|
'git fetch -tq',
|
|
|
|
'pip install poetry poetry-dynamic-versioning -qq',
|
|
|
|
'poetry build',
|
|
|
|
],
|
|
|
|
}],
|
|
|
|
|
2020-01-16 10:29:09 +00:00
|
|
|
kind: 'pipeline',
|
|
|
|
name: 'build-container-' + arch,
|
2019-02-25 16:18:10 +00:00
|
|
|
platform: {
|
2020-01-16 10:29:09 +00:00
|
|
|
os: 'linux',
|
2019-10-10 15:58:58 +00:00
|
|
|
arch: arch,
|
2019-02-25 16:18:10 +00:00
|
|
|
},
|
2021-02-19 08:48:31 +00:00
|
|
|
steps: build + [
|
2019-02-25 16:18:10 +00:00
|
|
|
{
|
2020-01-16 10:29:09 +00:00
|
|
|
name: 'dryrun',
|
2021-01-17 19:04:05 +00:00
|
|
|
image: 'thegeeklab/drone-docker:19',
|
2019-02-25 16:18:10 +00:00
|
|
|
settings: {
|
2019-10-10 15:58:58 +00:00
|
|
|
dry_run: true,
|
2020-12-28 15:52:28 +00:00
|
|
|
dockerfile: 'docker/Dockerfile.' + arch,
|
2020-09-27 12:56:49 +00:00
|
|
|
repo: 'thegeeklab/${DRONE_REPO_NAME}',
|
2020-01-16 10:29:09 +00:00
|
|
|
username: { from_secret: 'docker_username' },
|
|
|
|
password: { from_secret: 'docker_password' },
|
2019-02-25 16:18:10 +00:00
|
|
|
},
|
2020-09-06 17:59:28 +00:00
|
|
|
depends_on: ['build'],
|
2019-02-25 16:18:10 +00:00
|
|
|
when: {
|
2020-01-16 10:29:09 +00:00
|
|
|
ref: ['refs/pull/**'],
|
2019-02-25 16:18:10 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2020-09-06 17:59:28 +00:00
|
|
|
name: 'publish-dockerhub',
|
2021-01-17 19:04:05 +00:00
|
|
|
image: 'thegeeklab/drone-docker:19',
|
2019-02-25 16:18:10 +00:00
|
|
|
settings: {
|
2019-10-10 15:58:58 +00:00
|
|
|
auto_tag: true,
|
|
|
|
auto_tag_suffix: arch,
|
2020-12-28 15:52:28 +00:00
|
|
|
dockerfile: 'docker/Dockerfile.' + arch,
|
2020-09-27 12:56:49 +00:00
|
|
|
repo: 'thegeeklab/${DRONE_REPO_NAME}',
|
2020-01-16 10:29:09 +00:00
|
|
|
username: { from_secret: 'docker_username' },
|
|
|
|
password: { from_secret: 'docker_password' },
|
2019-02-25 16:18:10 +00:00
|
|
|
},
|
|
|
|
when: {
|
2020-12-30 14:11:26 +00:00
|
|
|
ref: ['refs/heads/main', 'refs/tags/**'],
|
2019-02-25 16:18:10 +00:00
|
|
|
},
|
2020-09-06 17:59:28 +00:00
|
|
|
depends_on: ['dryrun'],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'publish-quay',
|
2021-01-17 19:04:05 +00:00
|
|
|
image: 'thegeeklab/drone-docker:19',
|
2020-09-06 17:59:28 +00:00
|
|
|
settings: {
|
|
|
|
auto_tag: true,
|
|
|
|
auto_tag_suffix: arch,
|
2020-12-28 15:52:28 +00:00
|
|
|
dockerfile: 'docker/Dockerfile.' + arch,
|
2020-09-06 17:59:28 +00:00
|
|
|
registry: 'quay.io',
|
|
|
|
repo: 'quay.io/thegeeklab/${DRONE_REPO_NAME}',
|
|
|
|
username: { from_secret: 'quay_username' },
|
|
|
|
password: { from_secret: 'quay_password' },
|
|
|
|
},
|
|
|
|
when: {
|
2020-12-30 14:11:26 +00:00
|
|
|
ref: ['refs/heads/main', 'refs/tags/**'],
|
2020-09-06 17:59:28 +00:00
|
|
|
},
|
|
|
|
depends_on: ['dryrun'],
|
2019-02-25 16:18:10 +00:00
|
|
|
},
|
|
|
|
],
|
2019-03-22 09:29:06 +00:00
|
|
|
depends_on: [
|
2020-01-16 10:29:09 +00:00
|
|
|
'security',
|
2019-03-22 09:29:06 +00:00
|
|
|
],
|
|
|
|
trigger: {
|
2020-12-30 14:11:26 +00:00
|
|
|
ref: ['refs/heads/main', 'refs/tags/**', 'refs/pull/**'],
|
2019-03-22 09:29:06 +00:00
|
|
|
},
|
2019-02-25 16:18:10 +00:00
|
|
|
};
|
|
|
|
|
2020-01-14 23:10:20 +00:00
|
|
|
local PipelineDocs = {
|
2020-01-16 10:29:09 +00:00
|
|
|
kind: 'pipeline',
|
|
|
|
name: 'docs',
|
2020-01-14 23:10:20 +00:00
|
|
|
platform: {
|
2020-01-16 10:29:09 +00:00
|
|
|
os: 'linux',
|
|
|
|
arch: 'amd64',
|
2020-01-14 23:10:20 +00:00
|
|
|
},
|
|
|
|
concurrency: {
|
2020-01-16 10:29:09 +00:00
|
|
|
limit: 1,
|
2020-01-14 23:10:20 +00:00
|
|
|
},
|
|
|
|
steps: [
|
|
|
|
{
|
2020-01-16 10:29:09 +00:00
|
|
|
name: 'assets',
|
2020-11-13 13:28:26 +00:00
|
|
|
image: 'thegeeklab/alpine-tools',
|
2020-01-14 23:10:20 +00:00
|
|
|
commands: [
|
2020-11-13 13:28:26 +00:00
|
|
|
'make doc',
|
2020-01-14 23:10:20 +00:00
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
2020-06-03 10:50:12 +00:00
|
|
|
name: 'markdownlint',
|
2021-01-03 20:58:11 +00:00
|
|
|
image: 'thegeeklab/markdownlint-cli',
|
2020-01-14 23:10:20 +00:00
|
|
|
commands: [
|
2021-01-03 20:58:11 +00:00
|
|
|
"markdownlint 'docs/content/**/*.md' 'README.md' 'CONTRIBUTING.md'",
|
2020-01-16 10:29:09 +00:00
|
|
|
],
|
2020-06-03 10:50:12 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'spellcheck',
|
2022-07-17 18:54:34 +00:00
|
|
|
image: 'thegeeklab/alpine-tools',
|
2020-06-03 10:50:12 +00:00
|
|
|
commands: [
|
|
|
|
"spellchecker --files 'docs/content/**/*.md' 'README.md' -d .dictionary -p spell indefinite-article syntax-urls --no-suggestions",
|
|
|
|
],
|
|
|
|
environment: {
|
|
|
|
FORCE_COLOR: true,
|
|
|
|
NPM_CONFIG_LOGLEVEL: 'error',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'testbuild',
|
2022-05-02 20:07:13 +00:00
|
|
|
image: 'thegeeklab/hugo:0.97.3',
|
2020-06-03 10:50:12 +00:00
|
|
|
commands: [
|
2022-05-20 14:36:44 +00:00
|
|
|
'hugo --panicOnWarning -s docs/ -b http://localhost:8000/',
|
2020-06-03 10:50:12 +00:00
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'link-validation',
|
2020-09-27 12:56:49 +00:00
|
|
|
image: 'thegeeklab/link-validator',
|
2020-06-03 10:50:12 +00:00
|
|
|
commands: [
|
2022-05-20 14:36:44 +00:00
|
|
|
'link-validator --nice --external --skip-file .linkcheckignore',
|
2020-06-03 10:50:12 +00:00
|
|
|
],
|
|
|
|
environment: {
|
|
|
|
LINK_VALIDATOR_BASE_DIR: 'docs/public',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'build',
|
2022-05-02 20:07:13 +00:00
|
|
|
image: 'thegeeklab/hugo:0.97.3',
|
2020-06-03 10:50:12 +00:00
|
|
|
commands: [
|
2022-03-05 15:57:04 +00:00
|
|
|
'hugo --panicOnWarning -s docs/',
|
2020-06-03 10:50:12 +00:00
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'beautify',
|
2022-07-17 18:54:34 +00:00
|
|
|
image: 'thegeeklab/alpine-tools',
|
2020-06-03 10:50:12 +00:00
|
|
|
commands: [
|
|
|
|
"html-beautify -r -f 'docs/public/**/*.html'",
|
|
|
|
],
|
|
|
|
environment: {
|
|
|
|
FORCE_COLOR: true,
|
|
|
|
NPM_CONFIG_LOGLEVEL: 'error',
|
|
|
|
},
|
2020-01-14 23:10:20 +00:00
|
|
|
},
|
|
|
|
{
|
2020-01-16 10:29:09 +00:00
|
|
|
name: 'publish',
|
2022-07-26 12:47:51 +00:00
|
|
|
image: 'thegeeklab/drone-s3-sync',
|
2020-01-14 23:10:20 +00:00
|
|
|
settings: {
|
2020-05-26 07:19:21 +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-01-14 23:10:20 +00:00
|
|
|
},
|
2020-11-15 13:14:12 +00:00
|
|
|
when: {
|
2020-12-30 14:11:26 +00:00
|
|
|
ref: ['refs/heads/main', 'refs/tags/**'],
|
2020-11-15 13:14:12 +00:00
|
|
|
},
|
2020-01-14 23:10:20 +00:00
|
|
|
},
|
|
|
|
],
|
|
|
|
depends_on: [
|
2020-01-16 10:29:09 +00:00
|
|
|
'build-package',
|
|
|
|
'build-container-amd64',
|
|
|
|
'build-container-arm64',
|
|
|
|
'build-container-arm',
|
2020-01-14 23:10:20 +00:00
|
|
|
],
|
|
|
|
trigger: {
|
2020-12-30 14:11:26 +00:00
|
|
|
ref: ['refs/heads/main', 'refs/tags/**', 'refs/pull/**'],
|
2020-01-14 23:10:20 +00:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2019-02-25 16:18:10 +00:00
|
|
|
local PipelineNotifications = {
|
2020-01-16 10:29:09 +00:00
|
|
|
kind: 'pipeline',
|
|
|
|
name: 'notifications',
|
2019-02-25 16:18:10 +00:00
|
|
|
platform: {
|
2020-01-16 10:29:09 +00:00
|
|
|
os: 'linux',
|
|
|
|
arch: 'amd64',
|
2019-02-25 16:18:10 +00:00
|
|
|
},
|
|
|
|
steps: [
|
2019-10-10 15:58:58 +00:00
|
|
|
{
|
2020-01-16 10:29:09 +00:00
|
|
|
image: 'plugins/manifest',
|
2020-09-06 17:59:28 +00:00
|
|
|
name: 'manifest-dockerhub',
|
2019-10-10 15:58:58 +00:00
|
|
|
settings: {
|
|
|
|
ignore_missing: true,
|
|
|
|
auto_tag: true,
|
2020-01-16 10:29:09 +00:00
|
|
|
username: { from_secret: 'docker_username' },
|
|
|
|
password: { from_secret: 'docker_password' },
|
2020-09-06 17:59:28 +00:00
|
|
|
spec: 'docker/manifest.tmpl',
|
|
|
|
},
|
|
|
|
when: {
|
|
|
|
status: ['success'],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
image: 'plugins/manifest',
|
|
|
|
name: 'manifest-quay',
|
|
|
|
settings: {
|
|
|
|
ignore_missing: true,
|
|
|
|
auto_tag: true,
|
|
|
|
username: { from_secret: 'quay_username' },
|
|
|
|
password: { from_secret: 'quay_password' },
|
|
|
|
spec: 'docker/manifest-quay.tmpl',
|
|
|
|
},
|
|
|
|
when: {
|
|
|
|
status: ['success'],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'pushrm-dockerhub',
|
|
|
|
pull: 'always',
|
|
|
|
image: 'chko/docker-pushrm:1',
|
|
|
|
environment: {
|
|
|
|
DOCKER_PASS: {
|
|
|
|
from_secret: 'docker_password',
|
|
|
|
},
|
|
|
|
DOCKER_USER: {
|
|
|
|
from_secret: 'docker_username',
|
|
|
|
},
|
|
|
|
PUSHRM_FILE: 'README.md',
|
2020-09-27 12:56:49 +00:00
|
|
|
PUSHRM_SHORT: 'Another best practice scanner for Ansible roles and playbooks',
|
|
|
|
PUSHRM_TARGET: 'thegeeklab/${DRONE_REPO_NAME}',
|
2020-09-06 17:59:28 +00:00
|
|
|
},
|
|
|
|
when: {
|
|
|
|
status: ['success'],
|
2019-10-10 15:58:58 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2020-09-06 17:59:28 +00:00
|
|
|
name: 'pushrm-quay',
|
|
|
|
pull: 'always',
|
|
|
|
image: 'chko/docker-pushrm:1',
|
2019-10-10 15:58:58 +00:00
|
|
|
environment: {
|
2020-09-06 17:59:28 +00:00
|
|
|
APIKEY__QUAY_IO: {
|
|
|
|
from_secret: 'quay_token',
|
|
|
|
},
|
|
|
|
PUSHRM_FILE: 'README.md',
|
|
|
|
PUSHRM_TARGET: 'quay.io/thegeeklab/${DRONE_REPO_NAME}',
|
|
|
|
},
|
|
|
|
when: {
|
|
|
|
status: ['success'],
|
2019-10-10 15:58:58 +00:00
|
|
|
},
|
|
|
|
},
|
2019-02-25 16:18:10 +00:00
|
|
|
{
|
2020-01-16 10:29:09 +00:00
|
|
|
name: 'matrix',
|
2021-09-19 20:49:05 +00:00
|
|
|
image: 'thegeeklab/drone-matrix',
|
2019-02-25 16:18:10 +00:00
|
|
|
settings: {
|
2020-01-16 10:29:09 +00:00
|
|
|
homeserver: { from_secret: 'matrix_homeserver' },
|
|
|
|
roomid: { from_secret: 'matrix_roomid' },
|
2021-09-22 07:31:11 +00:00
|
|
|
template: 'Status: **{{ build.Status }}**<br/> Build: [{{ repo.Owner }}/{{ repo.Name }}]({{ build.Link }}){{#if build.Branch}} ({{ build.Branch }}){{/if}} by {{ commit.Author }}<br/> Message: {{ commit.Message.Title }}',
|
2020-01-16 10:29:09 +00:00
|
|
|
username: { from_secret: 'matrix_username' },
|
|
|
|
password: { from_secret: 'matrix_password' },
|
2019-02-25 16:18:10 +00:00
|
|
|
},
|
2020-09-06 17:59:28 +00:00
|
|
|
when: {
|
|
|
|
status: ['success', 'failure'],
|
|
|
|
},
|
2019-02-25 16:18:10 +00:00
|
|
|
},
|
|
|
|
],
|
|
|
|
depends_on: [
|
2020-01-16 10:29:09 +00:00
|
|
|
'docs',
|
2019-02-25 16:18:10 +00:00
|
|
|
],
|
|
|
|
trigger: {
|
2020-12-30 14:11:26 +00:00
|
|
|
ref: ['refs/heads/main', 'refs/tags/**'],
|
2020-01-16 10:29:09 +00:00
|
|
|
status: ['success', 'failure'],
|
2019-02-25 16:18:10 +00:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
[
|
2019-10-10 15:58:58 +00:00
|
|
|
PipelineLint,
|
|
|
|
PipelineTest,
|
|
|
|
PipelineSecurity,
|
|
|
|
PipelineBuildPackage,
|
2020-01-16 10:29:09 +00:00
|
|
|
PipelineBuildContainer(arch='amd64'),
|
|
|
|
PipelineBuildContainer(arch='arm64'),
|
|
|
|
PipelineBuildContainer(arch='arm'),
|
2020-01-14 23:10:20 +00:00
|
|
|
PipelineDocs,
|
2019-02-25 16:18:10 +00:00
|
|
|
PipelineNotifications,
|
|
|
|
]
|