2020-03-06 07:45:32 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: lint
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
2020-12-30 14:42:34 +00:00
|
|
|
- name: yapf
|
|
|
|
image: python:3.9
|
|
|
|
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
|
|
|
|
environment:
|
|
|
|
PY_COLORS: 1
|
|
|
|
|
2020-03-06 07:45:32 +00:00
|
|
|
- name: flake8
|
2020-11-15 20:52:35 +00:00
|
|
|
image: python:3.9
|
2020-03-06 07:45:32 +00:00
|
|
|
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
|
2020-11-15 20:52:35 +00:00
|
|
|
- poetry run flake8 ./dockertidy
|
2020-03-06 07:45:32 +00:00
|
|
|
environment:
|
|
|
|
PY_COLORS: 1
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
ref:
|
2020-12-30 14:02:23 +00:00
|
|
|
- refs/heads/main
|
2020-03-06 07:45:32 +00:00
|
|
|
- refs/tags/**
|
|
|
|
- refs/pull/**
|
|
|
|
|
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
|
|
|
|
image: python:3.9
|
|
|
|
commands:
|
|
|
|
- git fetch -tq
|
|
|
|
|
2020-03-06 07:45:32 +00:00
|
|
|
- name: python36-pytest
|
|
|
|
image: python:3.6
|
|
|
|
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-06 07:45:32 +00:00
|
|
|
environment:
|
|
|
|
PY_COLORS: 1
|
|
|
|
depends_on:
|
2020-12-28 16:43:33 +00:00
|
|
|
- fetch
|
2020-03-06 07:45:32 +00:00
|
|
|
|
|
|
|
- name: python37-pytest
|
|
|
|
image: python:3.7
|
|
|
|
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-06 07:45:32 +00:00
|
|
|
environment:
|
|
|
|
PY_COLORS: 1
|
|
|
|
depends_on:
|
2020-12-28 16:43:33 +00:00
|
|
|
- fetch
|
2020-03-06 07:45:32 +00:00
|
|
|
|
|
|
|
- name: python38-pytest
|
|
|
|
image: python:3.8
|
|
|
|
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-11-15 20:52:35 +00:00
|
|
|
environment:
|
|
|
|
PY_COLORS: 1
|
|
|
|
depends_on:
|
2020-12-28 16:43:33 +00:00
|
|
|
- fetch
|
2020-11-15 20:52:35 +00:00
|
|
|
|
|
|
|
- name: python39-pytest
|
|
|
|
image: python:3.9
|
|
|
|
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-06 07:45:32 +00:00
|
|
|
environment:
|
|
|
|
PY_COLORS: 1
|
|
|
|
depends_on:
|
2020-12-28 16:43:33 +00:00
|
|
|
- fetch
|
2020-03-06 07:45:32 +00:00
|
|
|
|
2020-04-06 20:36:36 +00:00
|
|
|
- name: codecov
|
2020-11-15 20:52:35 +00:00
|
|
|
image: python:3.9
|
2020-04-06 20:36:36 +00:00
|
|
|
commands:
|
|
|
|
- pip install codecov -qq
|
|
|
|
- codecov --required -X gcov
|
|
|
|
environment:
|
|
|
|
CODECOV_TOKEN:
|
|
|
|
from_secret: codecov_token
|
|
|
|
PY_COLORS: 1
|
2020-04-06 20:40:14 +00:00
|
|
|
depends_on:
|
|
|
|
- python36-pytest
|
|
|
|
- python37-pytest
|
|
|
|
- python38-pytest
|
2020-11-15 20:55:08 +00:00
|
|
|
- python39-pytest
|
2020-04-06 20:36:36 +00:00
|
|
|
|
2020-03-06 07:45:32 +00:00
|
|
|
trigger:
|
|
|
|
ref:
|
2020-12-30 14:02:23 +00:00
|
|
|
- refs/heads/main
|
2020-03-06 07:45:32 +00:00
|
|
|
- refs/tags/**
|
|
|
|
- refs/pull/**
|
|
|
|
|
|
|
|
depends_on:
|
2020-11-15 20:55:08 +00:00
|
|
|
- lint
|
2020-03-06 07:45:32 +00:00
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: security
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: bandit
|
2020-11-15 20:52:35 +00:00
|
|
|
image: python:3.9
|
2020-03-06 07:45:32 +00:00
|
|
|
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
|
2020-11-15 20:52:35 +00:00
|
|
|
- poetry run bandit -r ./dockertidy -x ./dockertidy/test
|
2020-03-06 07:45:32 +00:00
|
|
|
environment:
|
|
|
|
PY_COLORS: 1
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
ref:
|
2020-12-30 14:02:23 +00:00
|
|
|
- refs/heads/main
|
2020-03-06 07:45:32 +00:00
|
|
|
- refs/tags/**
|
|
|
|
- refs/pull/**
|
|
|
|
|
|
|
|
depends_on:
|
2020-04-06 20:36:36 +00:00
|
|
|
- test
|
2020-03-06 07:45:32 +00:00
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: build-package
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: build
|
2020-11-15 20:52:35 +00:00
|
|
|
image: python:3.9
|
2020-03-06 07:45:32 +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-06 07:45:32 +00:00
|
|
|
|
|
|
|
- name: checksum
|
|
|
|
image: alpine
|
|
|
|
commands:
|
|
|
|
- cd dist/ && sha256sum * > ../sha256sum.txt
|
|
|
|
|
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-06 07:45:32 +00:00
|
|
|
- name: publish-github
|
|
|
|
image: plugins/github-release
|
|
|
|
settings:
|
|
|
|
api_key:
|
|
|
|
from_secret: github_token
|
|
|
|
files:
|
|
|
|
- dist/*
|
|
|
|
- sha256sum.txt
|
|
|
|
note: CHANGELOG.md
|
|
|
|
overwrite: true
|
|
|
|
title: ${DRONE_TAG}
|
|
|
|
when:
|
|
|
|
ref:
|
|
|
|
- refs/tags/**
|
|
|
|
|
|
|
|
- name: publish-pypi
|
2020-11-15 20:52:35 +00:00
|
|
|
image: python:3.9
|
|
|
|
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_PASSWORD:
|
2020-03-06 07:45:32 +00:00
|
|
|
from_secret: pypi_password
|
2020-12-23 23:23:12 +00:00
|
|
|
POETRY_HTTP_BASIC_PYPI_USERNAME:
|
2020-03-06 07:45:32 +00:00
|
|
|
from_secret: pypi_username
|
|
|
|
when:
|
|
|
|
ref:
|
|
|
|
- refs/tags/**
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
ref:
|
2020-12-30 14:02:23 +00:00
|
|
|
- refs/heads/main
|
2020-03-06 07:45:32 +00:00
|
|
|
- refs/tags/**
|
|
|
|
- refs/pull/**
|
|
|
|
|
|
|
|
depends_on:
|
|
|
|
- security
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: build-container-amd64
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: build
|
2021-02-19 08:47:24 +00:00
|
|
|
image: python:3.9
|
2020-03-06 07:45:32 +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-06 07:45:32 +00:00
|
|
|
|
|
|
|
- name: dryrun
|
2021-01-17 19:04:05 +00:00
|
|
|
image: thegeeklab/drone-docker:19
|
2020-03-06 07:45:32 +00:00
|
|
|
settings:
|
2020-12-26 17:04:08 +00:00
|
|
|
dockerfile: docker/Dockerfile.amd64
|
2020-03-06 07:45:32 +00:00
|
|
|
dry_run: true
|
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
2020-09-25 17:48:40 +00:00
|
|
|
repo: thegeeklab/${DRONE_REPO_NAME}
|
2020-03-06 07:45:32 +00:00
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
|
|
|
when:
|
|
|
|
ref:
|
|
|
|
- refs/pull/**
|
2020-09-25 18:06:15 +00:00
|
|
|
depends_on:
|
|
|
|
- build
|
2020-03-06 07:45:32 +00:00
|
|
|
|
2020-09-25 17:48:40 +00:00
|
|
|
- name: publish-dockerhub
|
2021-01-17 19:04:05 +00:00
|
|
|
image: thegeeklab/drone-docker:19
|
2020-03-06 07:45:32 +00:00
|
|
|
settings:
|
|
|
|
auto_tag: true
|
|
|
|
auto_tag_suffix: amd64
|
2020-12-26 17:04:08 +00:00
|
|
|
dockerfile: docker/Dockerfile.amd64
|
2020-03-06 07:45:32 +00:00
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
2020-09-25 17:48:40 +00:00
|
|
|
repo: thegeeklab/${DRONE_REPO_NAME}
|
2020-03-06 07:45:32 +00:00
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
|
|
|
when:
|
|
|
|
ref:
|
2020-12-30 14:02:23 +00:00
|
|
|
- refs/heads/main
|
2020-03-06 07:45:32 +00:00
|
|
|
- refs/tags/**
|
2020-09-25 17:48:40 +00:00
|
|
|
depends_on:
|
|
|
|
- dryrun
|
|
|
|
|
|
|
|
- name: publish-quay
|
2021-01-17 19:04:05 +00:00
|
|
|
image: thegeeklab/drone-docker:19
|
2020-09-25 17:48:40 +00:00
|
|
|
settings:
|
|
|
|
auto_tag: true
|
|
|
|
auto_tag_suffix: amd64
|
2020-12-26 17:04:08 +00:00
|
|
|
dockerfile: docker/Dockerfile.amd64
|
2020-09-25 17:48:40 +00:00
|
|
|
password:
|
|
|
|
from_secret: quay_password
|
|
|
|
registry: quay.io
|
|
|
|
repo: quay.io/thegeeklab/${DRONE_REPO_NAME}
|
|
|
|
username:
|
|
|
|
from_secret: quay_username
|
|
|
|
when:
|
|
|
|
ref:
|
2020-12-30 14:02:23 +00:00
|
|
|
- refs/heads/main
|
2020-09-25 17:48:40 +00:00
|
|
|
- refs/tags/**
|
|
|
|
depends_on:
|
|
|
|
- dryrun
|
2020-03-06 07:45:32 +00:00
|
|
|
|
|
|
|
trigger:
|
|
|
|
ref:
|
2020-12-30 14:02:23 +00:00
|
|
|
- refs/heads/main
|
2020-03-06 07:45:32 +00:00
|
|
|
- refs/tags/**
|
|
|
|
- refs/pull/**
|
|
|
|
|
|
|
|
depends_on:
|
|
|
|
- security
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: build-container-arm64
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: arm64
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: build
|
2021-02-19 08:47:24 +00:00
|
|
|
image: python:3.9
|
2020-03-06 07:45:32 +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-06 07:45:32 +00:00
|
|
|
|
|
|
|
- name: dryrun
|
2021-01-17 19:04:05 +00:00
|
|
|
image: thegeeklab/drone-docker:19
|
2020-03-06 07:45:32 +00:00
|
|
|
settings:
|
2020-12-26 17:04:08 +00:00
|
|
|
dockerfile: docker/Dockerfile.arm64
|
2020-03-06 07:45:32 +00:00
|
|
|
dry_run: true
|
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
2020-09-25 17:48:40 +00:00
|
|
|
repo: thegeeklab/${DRONE_REPO_NAME}
|
2020-03-06 07:45:32 +00:00
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
|
|
|
when:
|
|
|
|
ref:
|
|
|
|
- refs/pull/**
|
2020-09-25 18:06:15 +00:00
|
|
|
depends_on:
|
|
|
|
- build
|
2020-03-06 07:45:32 +00:00
|
|
|
|
2020-09-25 17:48:40 +00:00
|
|
|
- name: publish-dockerhub
|
2021-01-17 19:04:05 +00:00
|
|
|
image: thegeeklab/drone-docker:19
|
2020-03-06 07:45:32 +00:00
|
|
|
settings:
|
|
|
|
auto_tag: true
|
|
|
|
auto_tag_suffix: arm64
|
2020-12-26 17:04:08 +00:00
|
|
|
dockerfile: docker/Dockerfile.arm64
|
2020-03-06 07:45:32 +00:00
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
2020-09-25 17:48:40 +00:00
|
|
|
repo: thegeeklab/${DRONE_REPO_NAME}
|
2020-03-06 07:45:32 +00:00
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
|
|
|
when:
|
|
|
|
ref:
|
2020-12-30 14:02:23 +00:00
|
|
|
- refs/heads/main
|
2020-03-06 07:45:32 +00:00
|
|
|
- refs/tags/**
|
2020-09-25 17:48:40 +00:00
|
|
|
depends_on:
|
|
|
|
- dryrun
|
|
|
|
|
|
|
|
- name: publish-quay
|
2021-01-17 19:04:05 +00:00
|
|
|
image: thegeeklab/drone-docker:19
|
2020-09-25 17:48:40 +00:00
|
|
|
settings:
|
|
|
|
auto_tag: true
|
|
|
|
auto_tag_suffix: arm64
|
2020-12-26 17:04:08 +00:00
|
|
|
dockerfile: docker/Dockerfile.arm64
|
2020-09-25 17:48:40 +00:00
|
|
|
password:
|
|
|
|
from_secret: quay_password
|
|
|
|
registry: quay.io
|
|
|
|
repo: quay.io/thegeeklab/${DRONE_REPO_NAME}
|
|
|
|
username:
|
|
|
|
from_secret: quay_username
|
|
|
|
when:
|
|
|
|
ref:
|
2020-12-30 14:02:23 +00:00
|
|
|
- refs/heads/main
|
2020-09-25 17:48:40 +00:00
|
|
|
- refs/tags/**
|
|
|
|
depends_on:
|
|
|
|
- dryrun
|
2020-03-06 07:45:32 +00:00
|
|
|
|
|
|
|
trigger:
|
|
|
|
ref:
|
2020-12-30 14:02:23 +00:00
|
|
|
- refs/heads/main
|
2020-03-06 07:45:32 +00:00
|
|
|
- refs/tags/**
|
|
|
|
- refs/pull/**
|
|
|
|
|
|
|
|
depends_on:
|
|
|
|
- security
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: build-container-arm
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: arm
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: build
|
2021-02-18 09:09:57 +00:00
|
|
|
image: python:3.9-alpine
|
2020-03-06 07:45:32 +00:00
|
|
|
commands:
|
2021-06-30 07:01:30 +00:00
|
|
|
- apk add -Uq --no-cache build-base openssl-dev libffi-dev musl-dev python3-dev git cargo
|
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
|
2021-02-19 08:47:24 +00:00
|
|
|
environment:
|
|
|
|
CARGO_NET_GIT_FETCH_WITH_CLI: true
|
2020-03-06 07:45:32 +00:00
|
|
|
|
|
|
|
- name: dryrun
|
2021-01-17 19:04:05 +00:00
|
|
|
image: thegeeklab/drone-docker:19
|
2020-03-06 07:45:32 +00:00
|
|
|
settings:
|
2020-12-26 17:04:08 +00:00
|
|
|
dockerfile: docker/Dockerfile.arm
|
2020-03-06 07:45:32 +00:00
|
|
|
dry_run: true
|
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
2020-09-25 17:48:40 +00:00
|
|
|
repo: thegeeklab/${DRONE_REPO_NAME}
|
2020-03-06 07:45:32 +00:00
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
|
|
|
when:
|
|
|
|
ref:
|
|
|
|
- refs/pull/**
|
2020-09-25 18:06:15 +00:00
|
|
|
depends_on:
|
|
|
|
- build
|
2020-03-06 07:45:32 +00:00
|
|
|
|
2020-09-25 17:48:40 +00:00
|
|
|
- name: publish-dockerhub
|
2021-01-17 19:04:05 +00:00
|
|
|
image: thegeeklab/drone-docker:19
|
2020-03-06 07:45:32 +00:00
|
|
|
settings:
|
|
|
|
auto_tag: true
|
|
|
|
auto_tag_suffix: arm
|
2020-12-26 17:04:08 +00:00
|
|
|
dockerfile: docker/Dockerfile.arm
|
2020-03-06 07:45:32 +00:00
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
2020-09-25 17:48:40 +00:00
|
|
|
repo: thegeeklab/${DRONE_REPO_NAME}
|
2020-03-06 07:45:32 +00:00
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
|
|
|
when:
|
|
|
|
ref:
|
2020-12-30 14:02:23 +00:00
|
|
|
- refs/heads/main
|
2020-03-06 07:45:32 +00:00
|
|
|
- refs/tags/**
|
2020-09-25 17:48:40 +00:00
|
|
|
depends_on:
|
|
|
|
- dryrun
|
|
|
|
|
|
|
|
- name: publish-quay
|
2021-01-17 19:04:05 +00:00
|
|
|
image: thegeeklab/drone-docker:19
|
2020-09-25 17:48:40 +00:00
|
|
|
settings:
|
|
|
|
auto_tag: true
|
|
|
|
auto_tag_suffix: arm
|
2020-12-26 17:04:08 +00:00
|
|
|
dockerfile: docker/Dockerfile.arm
|
2020-09-25 17:48:40 +00:00
|
|
|
password:
|
|
|
|
from_secret: quay_password
|
|
|
|
registry: quay.io
|
|
|
|
repo: quay.io/thegeeklab/${DRONE_REPO_NAME}
|
|
|
|
username:
|
|
|
|
from_secret: quay_username
|
|
|
|
when:
|
|
|
|
ref:
|
2020-12-30 14:02:23 +00:00
|
|
|
- refs/heads/main
|
2020-09-25 17:48:40 +00:00
|
|
|
- refs/tags/**
|
|
|
|
depends_on:
|
|
|
|
- dryrun
|
2020-03-06 07:45:32 +00:00
|
|
|
|
|
|
|
trigger:
|
|
|
|
ref:
|
2020-12-30 14:02:23 +00:00
|
|
|
- refs/heads/main
|
2020-03-06 07:45:32 +00:00
|
|
|
- refs/tags/**
|
|
|
|
- refs/pull/**
|
|
|
|
|
|
|
|
depends_on:
|
|
|
|
- security
|
|
|
|
|
|
|
|
---
|
|
|
|
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-06 07:45:32 +00:00
|
|
|
commands:
|
2020-11-17 13:01:42 +00:00
|
|
|
- make doc
|
2020-03-06 07:45:32 +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-06 07:45:32 +00:00
|
|
|
commands:
|
2020-12-26 15:56:06 +00:00
|
|
|
- markdownlint 'docs/content/**/*.md' 'README.md' 'CONTRIBUTING.md'
|
2020-06-03 20:40:20 +00:00
|
|
|
|
|
|
|
- name: spellcheck
|
|
|
|
image: node:lts-alpine
|
|
|
|
commands:
|
|
|
|
- npm install -g spellchecker-cli
|
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
|
2021-05-06 20:56:08 +00:00
|
|
|
image: thegeeklab/hugo:0.83.1
|
2020-06-03 20:40:20 +00:00
|
|
|
commands:
|
2021-05-06 20:56:08 +00:00
|
|
|
- hugo -s docs/ -b http://localhost/
|
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:
|
|
|
|
- link-validator -ro
|
|
|
|
environment:
|
|
|
|
LINK_VALIDATOR_BASE_DIR: docs/public
|
|
|
|
|
|
|
|
- name: build
|
2021-05-06 20:56:08 +00:00
|
|
|
image: thegeeklab/hugo:0.83.1
|
2020-06-03 20:40:20 +00:00
|
|
|
commands:
|
2021-05-06 20:56:08 +00:00
|
|
|
- hugo -s docs/
|
2020-06-03 20:40:20 +00: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-06 07:45:32 +00:00
|
|
|
|
|
|
|
- name: publish
|
2020-05-26 19:38:16 +00:00
|
|
|
image: plugins/s3-sync
|
2020-03-06 07:45:32 +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-11-17 13:01:42 +00:00
|
|
|
when:
|
|
|
|
ref:
|
2020-12-30 14:02:23 +00:00
|
|
|
- refs/heads/main
|
2020-11-17 13:01:42 +00:00
|
|
|
- refs/tags/**
|
2020-03-06 07:45:32 +00:00
|
|
|
|
|
|
|
trigger:
|
|
|
|
ref:
|
2020-12-30 14:02:23 +00:00
|
|
|
- refs/heads/main
|
2020-03-06 07:45:32 +00:00
|
|
|
- refs/tags/**
|
2020-11-17 13:01:42 +00:00
|
|
|
- refs/pull/**
|
2020-03-06 07:45:32 +00:00
|
|
|
|
|
|
|
depends_on:
|
|
|
|
- build-package
|
|
|
|
- build-container-amd64
|
|
|
|
- build-container-arm64
|
|
|
|
- build-container-arm
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: notifications
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
2020-09-25 17:48:40 +00:00
|
|
|
- name: manifest-dockerhub
|
2020-03-06 07:45:32 +00:00
|
|
|
image: plugins/manifest
|
|
|
|
settings:
|
|
|
|
auto_tag: true
|
|
|
|
ignore_missing: true
|
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
2020-09-25 17:48:40 +00:00
|
|
|
spec: docker/manifest.tmpl
|
2020-03-06 07:45:32 +00:00
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
2020-09-25 17:48:40 +00:00
|
|
|
when:
|
|
|
|
status:
|
|
|
|
- success
|
2020-03-06 07:45:32 +00:00
|
|
|
|
2020-09-25 17:48:40 +00:00
|
|
|
- name: manifest-quay
|
|
|
|
image: plugins/manifest
|
|
|
|
settings:
|
|
|
|
auto_tag: true
|
|
|
|
ignore_missing: true
|
|
|
|
password:
|
|
|
|
from_secret: quay_password
|
|
|
|
spec: docker/manifest-quay.tmpl
|
|
|
|
username:
|
|
|
|
from_secret: quay_username
|
|
|
|
when:
|
|
|
|
status:
|
|
|
|
- success
|
|
|
|
|
|
|
|
- name: pushrm-dockerhub
|
2021-02-18 09:09:57 +00:00
|
|
|
pull: always
|
2020-09-25 17:48:40 +00:00
|
|
|
image: chko/docker-pushrm:1
|
2020-03-06 07:45:32 +00:00
|
|
|
environment:
|
2020-09-25 17:48:40 +00:00
|
|
|
DOCKER_PASS:
|
2020-03-06 07:45:32 +00:00
|
|
|
from_secret: docker_password
|
2020-09-25 17:48:40 +00:00
|
|
|
DOCKER_USER:
|
2020-03-06 07:45:32 +00:00
|
|
|
from_secret: docker_username
|
2020-09-25 17:48:40 +00:00
|
|
|
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
|
2021-02-18 09:09:57 +00:00
|
|
|
pull: always
|
2020-09-25 17:48:40 +00: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-06 07:45:32 +00:00
|
|
|
|
|
|
|
- name: matrix
|
|
|
|
image: plugins/matrix
|
|
|
|
settings:
|
|
|
|
homeserver:
|
|
|
|
from_secret: matrix_homeserver
|
|
|
|
password:
|
|
|
|
from_secret: matrix_password
|
|
|
|
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
|
2020-03-07 14:52:02 +00:00
|
|
|
when:
|
|
|
|
status:
|
|
|
|
- success
|
|
|
|
- failure
|
2020-03-06 07:45:32 +00:00
|
|
|
|
|
|
|
trigger:
|
|
|
|
ref:
|
2020-12-30 14:02:23 +00:00
|
|
|
- refs/heads/main
|
2020-03-06 07:45:32 +00:00
|
|
|
- refs/tags/**
|
|
|
|
status:
|
|
|
|
- success
|
|
|
|
- failure
|
|
|
|
|
|
|
|
depends_on:
|
|
|
|
- docs
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: signature
|
2021-06-30 07:01:30 +00:00
|
|
|
hmac: 0ceda00e37bf11614697e5f502d9cc78a8f04ba77a7862566ee6e5ecc5fc9c89
|
2020-03-06 07:45:32 +00:00
|
|
|
|
|
|
|
...
|