docker-tidy/.drone.jsonnet

513 lines
12 KiB
Plaintext
Raw Normal View History

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