git-batch/.drone.jsonnet

386 lines
9.0 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,
environment: {
PY_COLORS: 1,
},
commands: [
2021-01-03 20:45:07 +01:00
'pip install poetry poetry-dynamic-versioning -qq',
'poetry config experimental.new-installer false',
'poetry install',
2021-01-03 20:45:07 +01:00
'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',
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 config experimental.new-installer false',
'poetry install',
2021-01-03 20:45:07 +01:00
'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
environment: {
PY_COLORS: 1,
},
commands: [
2021-01-03 20:45:07 +01:00
'git fetch -tq',
'pip install poetry poetry-dynamic-versioning -qq',
'poetry config experimental.new-installer false',
'poetry install',
2021-01-03 20:45:07 +01:00
'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/main', 'refs/tags/**', 'refs/pull/**'],
2020-04-11 19:28:56 +02:00
},
2019-11-29 14:45:28 +01:00
};
local PipelineTest = {
2020-04-11 19:28:56 +02:00
kind: 'pipeline',
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
],
depends_on: [
'lint',
],
trigger: {
ref: ['refs/heads/main', 'refs/tags/**', 'refs/pull/**'],
},
2019-11-29 14:45:28 +01:00
};
local PipelineSecurity = {
2020-04-11 19:28:56 +02:00
kind: 'pipeline',
name: 'security',
platform: {
os: 'linux',
arch: 'amd64',
},
steps: [
{
name: 'bandit',
image: 'python:3.9',
2020-04-11 19:28:56 +02:00
environment: {
PY_COLORS: 1,
},
commands: [
2021-01-03 20:45:07 +01:00
'git fetch -tq',
'pip install poetry poetry-dynamic-versioning -qq',
'poetry config experimental.new-installer false',
'poetry install',
2021-01-03 20:45:07 +01:00
'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/main', 'refs/tags/**', 'refs/pull/**'],
2020-04-11 19:28:56 +02:00
},
};
local PipelineBuildPackage = {
kind: 'pipeline',
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
},
{
name: 'changelog',
image: 'thegeeklab/git-chglog',
commands: [
'git fetch -tq',
'git-chglog --no-color --no-emoji ${DRONE_TAG:---next-tag unreleased unreleased}',
'git-chglog --no-color --no-emoji -o CHANGELOG.md ${DRONE_TAG:---next-tag unreleased unreleased}',
],
},
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/main', 'refs/tags/**', 'refs/pull/**'],
2020-04-11 19:28:56 +02:00
},
2019-11-29 14:45:28 +01:00
};
2020-04-11 19:28:56 +02:00
local PipelineBuildContainer(arch='amd64') = {
local build = if arch == 'arm' then [{
name: 'build',
image: 'python:3.9-alpine',
commands: [
'apk add -Uq --no-cache build-base libressl-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',
image: 'python:3.9',
commands: [
'git fetch -tq',
'pip install poetry poetry-dynamic-versioning -qq',
'poetry build',
],
}],
2020-04-11 19:28:56 +02:00
kind: 'pipeline',
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: build + [
2019-11-29 14:45:28 +01:00
{
2020-04-11 19:28:56 +02:00
name: 'dryrun',
2021-01-17 20:04:05 +01:00
image: 'thegeeklab/drone-docker:19',
2019-11-29 14:45:28 +01:00
settings: {
dry_run: true,
dockerfile: 'docker/Dockerfile.' + arch,
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
},
depends_on: ['build'],
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:17:44 +02:00
name: 'publish-dockerhub',
2021-01-17 20:04:05 +01:00
image: 'thegeeklab/drone-docker:19',
2019-11-29 14:45:28 +01:00
settings: {
auto_tag: true,
auto_tag_suffix: arch,
dockerfile: 'docker/Dockerfile.' + arch,
2020-09-24 20:17:44 +02:00
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: {
ref: ['refs/heads/main', 'refs/tags/**'],
2019-11-29 14:45:28 +01:00
},
2020-09-24 20:17:44 +02:00
depends_on: ['dryrun'],
},
{
name: 'publish-quay',
2021-01-17 20:04:05 +01:00
image: 'thegeeklab/drone-docker:19',
2020-09-24 20:17:44 +02:00
settings: {
auto_tag: true,
auto_tag_suffix: arch,
dockerfile: 'docker/Dockerfile.' + arch,
2020-09-24 20:17:44 +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-24 20:17:44 +02:00
},
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: {
ref: ['refs/heads/main', 'refs/tags/**', 'refs/pull/**'],
2019-11-29 14:45:28 +01:00
},
};
local PipelineNotifications = {
2020-04-11 19:28:56 +02:00
kind: 'pipeline',
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',
pull: 'always',
2020-09-24 20:17:44 +02:00
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',
pull: 'always',
2020-09-24 20:17:44 +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'],
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: {
ref: ['refs/heads/main', 'refs/tags/**'],
2020-04-11 19:28:56 +02:00
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
]