git-batch/.drone.jsonnet

372 lines
8.5 KiB
Plaintext
Raw Normal View History

2021-01-03 20:45:07 +01:00
local PythonVersion(pyversion='3.6') = {
2020-04-11 19:28:56 +02:00
name: 'python' + std.strReplace(pyversion, '.', '') + '-pytest',
image: 'python:' + pyversion,
pull: 'always',
environment: {
PY_COLORS: 1,
},
commands: [
2021-01-03 20:45:07 +01:00
'pip install poetry poetry-dynamic-versioning -qq',
'poetry install -q',
'poetry version',
'poetry run git-batch --help',
2020-04-11 19:28:56 +02:00
],
depends_on: [
2021-01-03 20:45:07 +01:00
'fetch',
2020-04-11 19:28:56 +02:00
],
2019-11-29 14:45:28 +01:00
};
local PipelineLint = {
2020-04-11 19:28:56 +02:00
kind: 'pipeline',
2020-11-27 14:13:11 +01:00
image_pull_secrets: ['docker_config'],
2020-04-11 19:28:56 +02:00
name: 'lint',
platform: {
os: 'linux',
arch: 'amd64',
},
steps: [
2021-01-03 20:45:07 +01:00
{
name: 'yapf',
image: 'python:3.9',
environment: {
PY_COLORS: 1,
},
commands: [
'git fetch -tq',
'pip install poetry poetry-dynamic-versioning -qq',
'poetry install -q',
'poetry run yapf -dr ./gitbatch',
],
},
2020-04-11 19:28:56 +02:00
{
name: 'flake8',
image: 'python:3.9',
2020-04-11 19:28:56 +02:00
pull: 'always',
environment: {
PY_COLORS: 1,
},
commands: [
2021-01-03 20:45:07 +01:00
'git fetch -tq',
'pip install poetry poetry-dynamic-versioning -qq',
'poetry install -q',
'poetry run flake8 ./gitbatch',
2020-04-11 19:28:56 +02:00
],
2019-11-29 14:45:28 +01:00
},
2020-04-11 19:28:56 +02:00
],
trigger: {
ref: ['refs/heads/master', 'refs/tags/**', 'refs/pull/**'],
},
2019-11-29 14:45:28 +01:00
};
local PipelineTest = {
2020-04-11 19:28:56 +02:00
kind: 'pipeline',
2020-11-27 14:13:11 +01:00
image_pull_secrets: ['docker_config'],
2020-04-11 19:28:56 +02:00
name: 'test',
platform: {
os: 'linux',
arch: 'amd64',
},
steps: [
2021-01-03 20:45:07 +01:00
{
name: 'fetch',
image: 'python:3.9',
commands: [
'git fetch -tq',
],
},
2020-04-11 19:28:56 +02:00
PythonVersion(pyversion='3.6'),
PythonVersion(pyversion='3.7'),
PythonVersion(pyversion='3.8'),
PythonVersion(pyversion='3.9'),
2020-04-11 19:28:56 +02:00
],
trigger: {
ref: ['refs/heads/master', 'refs/tags/**', 'refs/pull/**'],
},
depends_on: [
'lint',
],
2019-11-29 14:45:28 +01:00
};
local PipelineSecurity = {
2020-04-11 19:28:56 +02:00
kind: 'pipeline',
2020-11-27 14:13:11 +01:00
image_pull_secrets: ['docker_config'],
2020-04-11 19:28:56 +02:00
name: 'security',
platform: {
os: 'linux',
arch: 'amd64',
},
steps: [
{
name: 'bandit',
image: 'python:3.9',
2020-04-11 19:28:56 +02:00
pull: 'always',
environment: {
PY_COLORS: 1,
},
commands: [
2021-01-03 20:45:07 +01:00
'git fetch -tq',
'pip install poetry poetry-dynamic-versioning -qq',
'poetry install -q',
'poetry run bandit -r ./gitbatch -x ./gitbatch/test',
2020-04-11 19:28:56 +02:00
],
2019-11-29 14:45:28 +01:00
},
2020-04-11 19:28:56 +02:00
],
depends_on: [
'test',
],
trigger: {
ref: ['refs/heads/master', 'refs/tags/**', 'refs/pull/**'],
},
};
local PipelineBuildPackage = {
kind: 'pipeline',
2020-11-27 14:13:11 +01:00
image_pull_secrets: ['docker_config'],
2020-04-11 19:28:56 +02:00
name: 'build-package',
platform: {
os: 'linux',
arch: 'amd64',
},
steps: [
{
name: 'build',
image: 'python:3.9',
2020-04-11 19:28:56 +02:00
commands: [
2021-01-03 20:45:07 +01:00
'git fetch -tq',
'pip install poetry poetry-dynamic-versioning -qq',
'poetry build',
2020-04-11 19:28:56 +02:00
],
},
{
name: 'checksum',
image: 'alpine',
commands: [
'cd dist/ && sha256sum * > ../sha256sum.txt',
],
2019-11-29 14:45:28 +01:00
},
2020-04-11 19:28:56 +02: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-01-03 20:45:07 +01:00
image: 'python:3.9',
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-04-11 19:28:56 +02:00
},
when: {
ref: ['refs/tags/**'],
},
},
],
depends_on: [
'security',
],
trigger: {
ref: ['refs/heads/master', 'refs/tags/**', 'refs/pull/**'],
},
2019-11-29 14:45:28 +01:00
};
2020-04-11 19:28:56 +02:00
local PipelineBuildContainer(arch='amd64') = {
kind: 'pipeline',
2020-11-27 14:13:11 +01:00
image_pull_secrets: ['docker_config'],
2020-04-11 19:28:56 +02:00
name: 'build-container-' + arch,
2019-11-29 14:45:28 +01:00
platform: {
2020-04-11 19:28:56 +02:00
os: 'linux',
2019-11-29 14:45:28 +01:00
arch: arch,
},
steps: [
{
2020-04-11 19:28:56 +02:00
name: 'build',
image: 'python:3.9',
2020-04-11 19:28:56 +02:00
pull: 'always',
2019-11-29 14:45:28 +01:00
commands: [
2021-01-03 20:45:07 +01:00
'git fetch -tq',
'pip install poetry poetry-dynamic-versioning -qq',
'poetry build',
2020-04-11 19:28:56 +02:00
],
2019-11-29 14:45:28 +01:00
},
{
2020-04-11 19:28:56 +02:00
name: 'dryrun',
2020-11-27 14:13:11 +01:00
image: 'plugins/docker:19',
2020-04-11 19:28:56 +02:00
pull: 'always',
2019-11-29 14:45:28 +01:00
settings: {
2021-01-03 20:45:07 +01:00
config: { from_secret: 'docker_config' },
2019-11-29 14:45:28 +01:00
dry_run: true,
2020-11-11 21:15:37 +01:00
dockerfile: 'docker/Dockerfile',
2020-09-24 20:17:44 +02:00
repo: 'thegeeklab/git-batch',
2020-04-11 19:28:56 +02:00
username: { from_secret: 'docker_username' },
password: { from_secret: 'docker_password' },
2019-11-29 14:45:28 +01:00
},
when: {
2020-04-11 19:28:56 +02:00
ref: ['refs/pull/**'],
2019-11-29 14:45:28 +01:00
},
2020-09-24 20:36:40 +02:00
depends_on: ['build'],
2019-11-29 14:45:28 +01:00
},
{
2020-09-24 20:17:44 +02:00
name: 'publish-dockerhub',
2020-11-27 14:13:11 +01:00
image: 'plugins/docker:19',
2019-11-29 14:45:28 +01:00
settings: {
2020-11-27 14:13:11 +01:00
config: { from_secret: 'docker_config' },
2019-11-29 14:45:28 +01:00
auto_tag: true,
auto_tag_suffix: arch,
2020-09-24 20:17:44 +02:00
dockerfile: 'docker/Dockerfile',
repo: 'thegeeklab/${DRONE_REPO_NAME}',
2020-04-11 19:28:56 +02:00
username: { from_secret: 'docker_username' },
password: { from_secret: 'docker_password' },
2019-11-29 14:45:28 +01:00
},
when: {
2020-04-11 19:28:56 +02:00
ref: ['refs/heads/master', 'refs/tags/**'],
2019-11-29 14:45:28 +01:00
},
2020-09-24 20:17:44 +02:00
depends_on: ['dryrun'],
},
{
name: 'publish-quay',
2020-11-27 14:13:11 +01:00
image: 'plugins/docker:19',
2020-09-24 20:17:44 +02:00
settings: {
2020-11-27 14:13:11 +01:00
config: { from_secret: 'docker_config' },
2020-09-24 20:17:44 +02:00
auto_tag: true,
auto_tag_suffix: arch,
dockerfile: 'docker/Dockerfile',
registry: 'quay.io',
repo: 'quay.io/thegeeklab/${DRONE_REPO_NAME}',
username: { from_secret: 'quay_username' },
password: { from_secret: 'quay_password' },
},
when: {
ref: ['refs/heads/master', 'refs/tags/**'],
},
depends_on: ['dryrun'],
2019-11-29 14:45:28 +01:00
},
],
depends_on: [
2020-04-11 19:28:56 +02:00
'security',
2019-11-29 14:45:28 +01:00
],
trigger: {
2020-04-11 19:28:56 +02:00
ref: ['refs/heads/master', 'refs/tags/**', 'refs/pull/**'],
2019-11-29 14:45:28 +01:00
},
};
local PipelineNotifications = {
2020-04-11 19:28:56 +02:00
kind: 'pipeline',
2020-11-27 14:13:11 +01:00
image_pull_secrets: ['docker_config'],
2020-04-11 19:28:56 +02:00
name: 'notifications',
2019-11-29 14:45:28 +01:00
platform: {
2020-04-11 19:28:56 +02:00
os: 'linux',
arch: 'amd64',
2019-11-29 14:45:28 +01:00
},
steps: [
{
2020-04-11 19:28:56 +02:00
image: 'plugins/manifest',
2020-09-24 20:17:44 +02:00
name: 'manifest-dockerhub',
2019-11-29 14:45:28 +01:00
settings: {
ignore_missing: true,
auto_tag: true,
2020-04-11 19:28:56 +02:00
username: { from_secret: 'docker_username' },
password: { from_secret: 'docker_password' },
2020-09-24 20:17:44 +02:00
spec: 'docker/manifest.tmpl',
},
when: {
status: ['success'],
2019-11-29 14:45:28 +01:00
},
},
{
2020-09-24 20:17:44 +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',
image: 'chko/docker-pushrm:1',
2019-11-29 14:45:28 +01:00
environment: {
2020-09-24 20:17:44 +02:00
DOCKER_PASS: {
from_secret: 'docker_password',
},
DOCKER_USER: {
from_secret: 'docker_username',
},
PUSHRM_FILE: 'README.md',
PUSHRM_SHORT: 'GitHub release notification bot',
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'],
2019-11-29 14:45:28 +01:00
},
},
{
2020-04-11 19:28:56 +02:00
name: 'matrix',
image: 'plugins/matrix',
2019-11-29 14:45:28 +01:00
settings: {
2020-04-11 19:28:56 +02:00
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' },
2019-11-29 15:02:18 +01:00
},
2020-09-24 20:33:35 +02:00
when: {
status: ['success', 'failure'],
},
2019-11-29 14:45:28 +01:00
},
],
depends_on: [
2020-04-11 19:31:00 +02:00
'build-package',
'build-container-amd64',
'build-container-arm64',
'build-container-arm',
2019-11-29 14:45:28 +01:00
],
trigger: {
2020-04-11 19:28:56 +02:00
ref: ['refs/heads/master', 'refs/tags/**'],
status: ['success', 'failure'],
2019-11-29 14:45:28 +01:00
},
};
[
2020-04-11 19:28:56 +02:00
PipelineLint,
PipelineTest,
PipelineSecurity,
PipelineBuildPackage,
PipelineBuildContainer(arch='amd64'),
PipelineBuildContainer(arch='arm64'),
PipelineBuildContainer(arch='arm'),
PipelineNotifications,
2019-11-29 14:45:28 +01:00
]