ansible-doctor/.drone.yml

631 lines
12 KiB
YAML
Raw Normal View History

2019-10-08 15:39:08 +02:00
---
kind: pipeline
name: lint
platform:
os: linux
arch: amd64
steps:
2020-12-31 14:17:21 +01:00
- name: yapf
image: python:3.9
commands:
- git fetch -tq
- pip install poetry poetry-dynamic-versioning -qq
- poetry config experimental.new-installer false
- poetry install
2020-12-31 14:29:51 +01:00
- poetry run yapf -dr ./ansibledoctor
2020-12-31 14:17:21 +01:00
environment:
PY_COLORS: 1
2019-10-08 15:39:08 +02:00
- name: flake8
2020-11-12 22:29:46 +01:00
image: python:3.9
2019-10-08 15:39:08 +02:00
commands:
2020-12-31 14:27:53 +01:00
- git fetch -tq
- pip install poetry poetry-dynamic-versioning -qq
- poetry config experimental.new-installer false
- poetry install
2020-12-31 14:29:51 +01:00
- poetry run flake8 ./ansibledoctor
2019-10-08 15:39:08 +02:00
environment:
PY_COLORS: 1
trigger:
ref:
- refs/heads/main
2020-01-16 11:27:46 +01:00
- refs/tags/**
- refs/pull/**
2019-10-08 15:39:08 +02:00
---
kind: pipeline
name: test
platform:
os: linux
arch: amd64
steps:
2020-12-31 14:27:53 +01:00
- name: fetch
image: python:3.9
commands:
- git fetch -tq
2019-10-08 15:39:08 +02:00
- name: python36-pytest
image: python:3.6
commands:
2020-12-31 14:27:53 +01:00
- pip install poetry poetry-dynamic-versioning -qq
- poetry config experimental.new-installer false
- poetry install
2020-12-31 14:27:53 +01:00
- poetry version
2020-12-31 14:29:51 +01:00
- poetry run ansible-doctor --help
2019-10-08 15:39:08 +02:00
environment:
PY_COLORS: 1
depends_on:
2020-12-31 14:27:53 +01:00
- fetch
2019-10-08 15:39:08 +02:00
- name: python37-pytest
image: python:3.7
commands:
2020-12-31 14:27:53 +01:00
- pip install poetry poetry-dynamic-versioning -qq
- poetry config experimental.new-installer false
- poetry install
2020-12-31 14:27:53 +01:00
- poetry version
2020-12-31 14:29:51 +01:00
- poetry run ansible-doctor --help
2019-10-08 15:39:08 +02:00
environment:
PY_COLORS: 1
depends_on:
2020-12-31 14:27:53 +01:00
- fetch
2019-10-08 15:39:08 +02:00
2020-04-05 23:21:12 +02:00
- name: python38-pytest
image: python:3.8
2019-10-08 15:39:08 +02:00
commands:
2020-12-31 14:27:53 +01:00
- pip install poetry poetry-dynamic-versioning -qq
- poetry config experimental.new-installer false
- poetry install
2020-12-31 14:27:53 +01:00
- poetry version
2020-12-31 14:29:51 +01:00
- poetry run ansible-doctor --help
2019-10-08 15:39:08 +02:00
environment:
PY_COLORS: 1
depends_on:
2020-12-31 14:27:53 +01:00
- fetch
2019-10-08 15:39:08 +02:00
2020-11-12 22:29:46 +01:00
- name: python39-pytest
image: python:3.9
commands:
2020-12-31 14:27:53 +01:00
- pip install poetry poetry-dynamic-versioning -qq
- poetry config experimental.new-installer false
- poetry install
2020-12-31 14:27:53 +01:00
- poetry version
2020-12-31 14:29:51 +01:00
- poetry run ansible-doctor --help
2020-11-12 22:29:46 +01:00
environment:
PY_COLORS: 1
depends_on:
2020-12-31 14:27:53 +01:00
- fetch
2020-11-12 22:29:46 +01:00
2019-10-08 15:39:08 +02:00
trigger:
ref:
- refs/heads/main
2020-01-16 11:27:46 +01:00
- refs/tags/**
- refs/pull/**
2019-10-08 15:39:08 +02:00
depends_on:
- lint
---
kind: pipeline
name: security
platform:
os: linux
arch: amd64
steps:
- name: bandit
2020-11-12 22:29:46 +01:00
image: python:3.9
2019-10-08 15:39:08 +02:00
commands:
2020-12-31 14:27:53 +01:00
- git fetch -tq
- pip install poetry poetry-dynamic-versioning -qq
- poetry config experimental.new-installer false
- poetry install
2020-12-31 14:29:51 +01:00
- poetry run bandit -r ./ansibledoctor -x ./ansibledoctor/test
2019-10-08 15:39:08 +02:00
environment:
PY_COLORS: 1
trigger:
ref:
- refs/heads/main
2020-01-16 11:27:46 +01:00
- refs/tags/**
- refs/pull/**
2019-10-08 15:39:08 +02:00
depends_on:
- test
---
kind: pipeline
2019-10-08 16:26:58 +02:00
name: build-package
2019-10-08 15:39:08 +02:00
platform:
os: linux
arch: amd64
steps:
- name: build
2020-11-12 22:29:46 +01:00
image: python:3.9
2019-10-08 15:39:08 +02:00
commands:
2020-12-31 14:27:53 +01:00
- git fetch -tq
- pip install poetry poetry-dynamic-versioning -qq
- poetry build
2019-10-08 15:39:08 +02:00
- name: checksum
image: alpine
commands:
2020-01-16 11:27:46 +01:00
- cd dist/ && sha256sum * > ../sha256sum.txt
2019-10-09 13:03:55 +02: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}
2019-10-08 15:39:08 +02:00
- name: publish-github
image: plugins/github-release
settings:
api_key:
from_secret: github_token
files:
2020-01-16 11:27:46 +01:00
- dist/*
2019-10-08 15:39:08 +02:00
- sha256sum.txt
note: CHANGELOG.md
overwrite: true
2020-01-16 11:27:46 +01:00
title: ${DRONE_TAG}
2019-10-08 15:39:08 +02:00
when:
ref:
2020-01-16 11:27:46 +01:00
- refs/tags/**
2019-10-08 15:39:08 +02:00
2019-10-09 14:38:55 +02:00
- name: publish-pypi
2020-12-31 14:27:53 +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_PASSWORD:
2019-10-09 14:38:55 +02:00
from_secret: pypi_password
2020-12-31 14:27:53 +01:00
POETRY_HTTP_BASIC_PYPI_USERNAME:
2019-10-09 14:38:55 +02:00
from_secret: pypi_username
when:
ref:
2020-01-16 11:27:46 +01:00
- refs/tags/**
2019-10-09 14:38:55 +02:00
2019-10-08 15:39:08 +02:00
trigger:
ref:
- refs/heads/main
2020-01-16 11:27:46 +01:00
- refs/tags/**
- refs/pull/**
2019-10-08 15:39:08 +02:00
depends_on:
- security
2019-10-08 16:34:52 +02:00
---
kind: pipeline
name: build-container-amd64
platform:
os: linux
arch: amd64
steps:
- name: build
image: python:3.9
2019-10-08 16:34:52 +02:00
commands:
2020-12-31 14:27:53 +01:00
- git fetch -tq
- pip install poetry poetry-dynamic-versioning -qq
- poetry build
2019-10-08 16:34:52 +02:00
- name: dryrun
2021-01-17 20:04:05 +01:00
image: thegeeklab/drone-docker:19
2019-10-08 16:34:52 +02:00
settings:
2020-12-31 13:41:26 +01:00
dockerfile: docker/Dockerfile.amd64
2019-10-08 16:34:52 +02:00
dry_run: true
password:
from_secret: docker_password
2020-09-27 14:21:54 +02:00
repo: thegeeklab/${DRONE_REPO_NAME}
2019-10-08 16:34:52 +02:00
username:
from_secret: docker_username
2019-10-09 13:43:14 +02:00
when:
ref:
2020-01-16 11:27:46 +01:00
- refs/pull/**
2020-09-05 20:22:59 +02:00
depends_on:
- build
2019-10-08 16:34:52 +02:00
2020-09-05 18:01:56 +02:00
- name: publish-dockerhub
2021-01-17 20:04:05 +01:00
image: thegeeklab/drone-docker:19
2019-10-08 16:34:52 +02:00
settings:
auto_tag: true
2019-10-09 11:05:02 +02:00
auto_tag_suffix: amd64
2020-12-31 13:41:26 +01:00
dockerfile: docker/Dockerfile.amd64
2019-10-08 16:34:52 +02:00
password:
from_secret: docker_password
2020-09-27 14:21:54 +02:00
repo: thegeeklab/${DRONE_REPO_NAME}
2019-10-08 16:34:52 +02:00
username:
from_secret: docker_username
when:
ref:
- refs/heads/main
2020-01-16 11:27:46 +01:00
- refs/tags/**
2020-09-05 20:22:59 +02:00
depends_on:
- dryrun
2019-10-08 16:34:52 +02:00
2020-09-05 18:01:56 +02:00
- name: publish-quay
2021-01-17 20:04:05 +01:00
image: thegeeklab/drone-docker:19
2020-09-05 18:01:56 +02:00
settings:
auto_tag: true
auto_tag_suffix: amd64
2020-12-31 13:41:26 +01:00
dockerfile: docker/Dockerfile.amd64
2020-09-05 18:01:56 +02:00
password:
from_secret: quay_password
2020-09-05 20:06:04 +02:00
registry: quay.io
2020-09-05 18:01:56 +02:00
repo: quay.io/thegeeklab/${DRONE_REPO_NAME}
username:
from_secret: quay_username
when:
ref:
- refs/heads/main
2020-09-05 18:01:56 +02:00
- refs/tags/**
2020-09-05 20:22:59 +02:00
depends_on:
- dryrun
2020-09-05 18:01:56 +02:00
2019-10-08 16:34:52 +02:00
trigger:
ref:
- refs/heads/main
2020-01-16 11:27:46 +01:00
- refs/tags/**
- refs/pull/**
2019-10-08 16:34:52 +02:00
depends_on:
- security
---
kind: pipeline
name: build-container-arm64
platform:
os: linux
arch: arm64
steps:
- name: build
image: python:3.9
2019-10-08 16:34:52 +02:00
commands:
2020-12-31 14:27:53 +01:00
- git fetch -tq
- pip install poetry poetry-dynamic-versioning -qq
- poetry build
2019-10-08 16:34:52 +02:00
- name: dryrun
2021-01-17 20:04:05 +01:00
image: thegeeklab/drone-docker:19
2019-10-08 16:34:52 +02:00
settings:
2020-12-31 13:41:26 +01:00
dockerfile: docker/Dockerfile.arm64
2019-10-08 16:34:52 +02:00
dry_run: true
password:
from_secret: docker_password
2020-09-27 14:21:54 +02:00
repo: thegeeklab/${DRONE_REPO_NAME}
2019-10-08 16:34:52 +02:00
username:
from_secret: docker_username
2019-10-09 13:43:14 +02:00
when:
ref:
2020-01-16 11:27:46 +01:00
- refs/pull/**
2020-09-05 20:22:59 +02:00
depends_on:
- build
2019-10-08 16:34:52 +02:00
2020-09-05 18:01:56 +02:00
- name: publish-dockerhub
2021-01-17 20:04:05 +01:00
image: thegeeklab/drone-docker:19
2019-10-08 16:34:52 +02:00
settings:
auto_tag: true
2019-10-09 11:05:02 +02:00
auto_tag_suffix: arm64
2020-12-31 13:41:26 +01:00
dockerfile: docker/Dockerfile.arm64
2019-10-08 16:34:52 +02:00
password:
from_secret: docker_password
2020-09-27 14:21:54 +02:00
repo: thegeeklab/${DRONE_REPO_NAME}
2019-10-08 16:34:52 +02:00
username:
from_secret: docker_username
when:
ref:
- refs/heads/main
2020-01-16 11:27:46 +01:00
- refs/tags/**
2020-09-05 20:22:59 +02:00
depends_on:
- dryrun
2019-10-08 16:34:52 +02:00
2020-09-05 18:01:56 +02:00
- name: publish-quay
2021-01-17 20:04:05 +01:00
image: thegeeklab/drone-docker:19
2020-09-05 18:01:56 +02:00
settings:
auto_tag: true
auto_tag_suffix: arm64
2020-12-31 13:41:26 +01:00
dockerfile: docker/Dockerfile.arm64
2020-09-05 18:01:56 +02:00
password:
from_secret: quay_password
2020-09-05 20:06:04 +02:00
registry: quay.io
2020-09-05 18:01:56 +02:00
repo: quay.io/thegeeklab/${DRONE_REPO_NAME}
username:
from_secret: quay_username
when:
ref:
- refs/heads/main
2020-09-05 18:01:56 +02:00
- refs/tags/**
2020-09-05 20:22:59 +02:00
depends_on:
- dryrun
2020-09-05 18:01:56 +02:00
2019-10-08 16:34:52 +02:00
trigger:
ref:
- refs/heads/main
2020-01-16 11:27:46 +01:00
- refs/tags/**
- refs/pull/**
2019-10-08 16:34:52 +02:00
depends_on:
- security
---
kind: pipeline
name: build-container-arm
platform:
os: linux
arch: arm
steps:
- name: build
image: python:3.9-alpine
2019-10-08 16:34:52 +02:00
commands:
- apk add -Uq --no-cache build-base libressl-dev libffi-dev musl-dev python3-dev git cargo
2020-12-31 14:27:53 +01:00
- git fetch -tq
- pip install poetry poetry-dynamic-versioning -qq
- poetry build
environment:
CARGO_NET_GIT_FETCH_WITH_CLI: true
2019-10-08 16:34:52 +02:00
- name: dryrun
2021-01-17 20:04:05 +01:00
image: thegeeklab/drone-docker:19
2019-10-08 16:34:52 +02:00
settings:
2020-12-31 13:41:26 +01:00
dockerfile: docker/Dockerfile.arm
2019-10-08 16:34:52 +02:00
dry_run: true
password:
from_secret: docker_password
2020-09-27 14:21:54 +02:00
repo: thegeeklab/${DRONE_REPO_NAME}
2019-10-08 16:34:52 +02:00
username:
from_secret: docker_username
2019-10-09 13:43:14 +02:00
when:
ref:
2020-01-16 11:27:46 +01:00
- refs/pull/**
2020-09-05 20:22:59 +02:00
depends_on:
- build
2019-10-08 16:34:52 +02:00
2020-09-05 18:01:56 +02:00
- name: publish-dockerhub
2021-01-17 20:04:05 +01:00
image: thegeeklab/drone-docker:19
2019-10-08 16:34:52 +02:00
settings:
auto_tag: true
2019-10-09 11:05:02 +02:00
auto_tag_suffix: arm
2020-12-31 13:41:26 +01:00
dockerfile: docker/Dockerfile.arm
2019-10-08 16:34:52 +02:00
password:
from_secret: docker_password
2020-09-27 14:21:54 +02:00
repo: thegeeklab/${DRONE_REPO_NAME}
2019-10-08 16:34:52 +02:00
username:
from_secret: docker_username
when:
ref:
- refs/heads/main
2020-01-16 11:27:46 +01:00
- refs/tags/**
2020-09-05 20:22:59 +02:00
depends_on:
- dryrun
2019-10-08 16:34:52 +02:00
2020-09-05 18:01:56 +02:00
- name: publish-quay
2021-01-17 20:04:05 +01:00
image: thegeeklab/drone-docker:19
2020-09-05 18:01:56 +02:00
settings:
auto_tag: true
auto_tag_suffix: arm
2020-12-31 13:41:26 +01:00
dockerfile: docker/Dockerfile.arm
2020-09-05 18:01:56 +02:00
password:
from_secret: quay_password
2020-09-05 20:06:04 +02:00
registry: quay.io
2020-09-05 18:01:56 +02:00
repo: quay.io/thegeeklab/${DRONE_REPO_NAME}
username:
from_secret: quay_username
when:
ref:
- refs/heads/main
2020-09-05 18:01:56 +02:00
- refs/tags/**
2020-09-05 20:22:59 +02:00
depends_on:
- dryrun
2020-09-05 18:01:56 +02:00
2019-10-08 16:34:52 +02:00
trigger:
ref:
- refs/heads/main
2020-01-16 11:27:46 +01:00
- refs/tags/**
- refs/pull/**
2019-10-08 16:34:52 +02:00
depends_on:
- security
2020-01-16 11:27:46 +01:00
---
kind: pipeline
name: docs
platform:
os: linux
arch: amd64
concurrency:
limit: 1
steps:
- name: assets
2020-11-12 22:29:46 +01:00
image: thegeeklab/alpine-tools
2020-06-03 12:10:40 +02:00
commands:
2020-11-12 22:29:46 +01:00
- make doc
2020-06-03 12:10:40 +02:00
2020-06-02 22:17:46 +02:00
- name: markdownlint
image: thegeeklab/markdownlint-cli
2020-06-02 22:17:46 +02:00
commands:
- markdownlint 'docs/content/**/*.md' 'README.md' 'CONTRIBUTING.md'
2020-06-02 22:17:46 +02:00
- name: spellcheck
image: node:lts-alpine
commands:
- npm install -g spellchecker-cli
- 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
2021-01-03 22:05:30 +01:00
image: klakegg/hugo:0.80.0-ext-alpine-ci
commands:
2020-06-03 12:24:17 +02:00
- hugo-official -s docs/ -b http://localhost/
2020-06-02 22:17:46 +02:00
- name: link-validation
2020-09-27 14:21:54 +02:00
image: thegeeklab/link-validator
2020-06-02 22:17:46 +02:00
commands:
- link-validator -ro
environment:
2020-06-02 22:23:25 +02:00
LINK_VALIDATOR_BASE_DIR: docs/public
2020-06-02 22:17:46 +02:00
- name: build
2021-01-03 22:05:30 +01:00
image: klakegg/hugo:0.80.0-ext-alpine-ci
2020-01-16 11:27:46 +01:00
commands:
2020-06-03 12:24:17 +02:00
- hugo-official -s docs/
2020-01-16 11:27:46 +01:00
2020-06-02 22:23:25 +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-01-16 11:27:46 +01:00
- name: publish
2020-05-26 09:03:09 +02:00
image: plugins/s3-sync
2020-01-16 11:27:46 +01:00
settings:
2020-05-26 09:03:09 +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
2020-05-26 09:10:00 +02:00
source: docs/public/
strip_prefix: docs/public/
2020-05-26 09:03:09 +02:00
target: /${DRONE_REPO_NAME}
2020-11-12 22:29:46 +01:00
when:
ref:
- refs/heads/main
2020-11-12 22:29:46 +01:00
- refs/tags/**
2020-01-16 11:27:46 +01:00
trigger:
ref:
- refs/heads/main
2020-01-16 11:27:46 +01:00
- refs/tags/**
2020-11-12 22:29:46 +01:00
- refs/pull/**
2020-01-16 11:27:46 +01:00
depends_on:
- build-package
- build-container-amd64
- build-container-arm64
- build-container-arm
2019-10-08 15:55:24 +02:00
---
kind: pipeline
name: notifications
platform:
os: linux
arch: amd64
steps:
2020-09-05 18:03:52 +02:00
- name: manifest-dockerhub
image: plugins/manifest
2019-10-09 11:05:02 +02:00
settings:
2019-10-09 13:03:55 +02:00
auto_tag: true
2019-10-09 11:05:02 +02:00
ignore_missing: true
password:
from_secret: docker_password
2020-09-05 18:01:56 +02:00
spec: docker/manifest.tmpl
2019-10-09 11:05:02 +02:00
username:
from_secret: docker_username
2020-09-05 18:15:44 +02:00
when:
status:
- success
2019-10-09 11:05:02 +02:00
2020-09-05 18:03:52 +02:00
- name: manifest-quay
image: plugins/manifest
2020-09-05 18:01:56 +02:00
settings:
auto_tag: true
ignore_missing: true
password:
from_secret: quay_password
spec: docker/manifest-quay.tmpl
username:
from_secret: quay_username
2020-09-05 18:15:44 +02:00
when:
status:
- success
2020-09-05 18:01:56 +02:00
- name: pushrm-dockerhub
pull: always
image: chko/docker-pushrm:1
environment:
2020-09-05 18:01:56 +02:00
DOCKER_PASS:
from_secret: docker_password
2020-09-05 18:01:56 +02:00
DOCKER_USER:
from_secret: docker_username
2020-09-05 18:01:56 +02:00
PUSHRM_FILE: README.md
2020-09-27 14:21:54 +02:00
PUSHRM_SHORT: Annotation based documentation for your Ansible roles
PUSHRM_TARGET: thegeeklab/${DRONE_REPO_NAME}
2020-09-05 18:01:56 +02:00
when:
status:
- success
- name: pushrm-quay
pull: always
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-10-08 15:55:24 +02: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-09-05 18:15:44 +02:00
when:
status:
- success
- failure
2019-10-08 15:55:24 +02:00
trigger:
ref:
- refs/heads/main
2020-01-16 11:27:46 +01:00
- refs/tags/**
2019-10-08 15:55:24 +02:00
status:
- success
- failure
depends_on:
2020-01-16 11:27:46 +01:00
- docs
2019-10-08 15:55:24 +02:00
2020-06-02 22:23:25 +02:00
---
kind: signature
hmac: a7735a0b4f1c4f02313d41de0fda30fe4593858f7f1db5eb7066d246c4d39b00
2020-06-02 22:23:25 +02:00
2019-10-08 15:39:08 +02:00
...