ansible-later/.drone.yml

582 lines
12 KiB
YAML
Raw Normal View History

2018-12-19 11:19:07 +01:00
---
kind: pipeline
2019-10-10 17:58:58 +02:00
name: lint
2019-02-25 17:18:10 +01:00
platform:
arch: amd64
2021-09-13 10:53:45 +02:00
os: linux
2019-02-25 17:18:10 +01:00
steps:
2021-09-13 10:53:45 +02:00
- commands:
2020-12-30 15:44:56 +01:00
- git fetch -tq
- pip install poetry poetry-dynamic-versioning -qq
- poetry config experimental.new-installer false
- poetry install
2020-12-30 15:44:56 +01:00
- poetry run yapf -dr ./ansiblelater
environment:
PY_COLORS: 1
2020-11-13 14:28:26 +01:00
image: python:3.9
2021-09-13 10:53:45 +02:00
name: yapf
- commands:
2020-12-28 16:21:51 +01:00
- git fetch -tq
- pip install poetry poetry-dynamic-versioning -qq
- poetry install -E ansible-base
2020-12-28 16:21:51 +01:00
- poetry run flake8 ./ansiblelater
2019-10-10 17:58:58 +02:00
environment:
PY_COLORS: 1
2021-09-13 10:53:45 +02:00
image: python:3.9
name: flake8
2019-10-10 17:58:58 +02:00
trigger:
ref:
- refs/heads/main
2020-01-15 00:10:20 +01:00
- refs/tags/**
- refs/pull/**
2019-10-10 17:58:58 +02:00
---
2021-09-13 10:53:45 +02:00
depends_on:
- lint
2019-10-10 17:58:58 +02:00
kind: pipeline
name: test
platform:
arch: amd64
2021-09-13 10:53:45 +02:00
os: linux
2019-10-10 17:58:58 +02:00
steps:
2021-09-13 10:53:45 +02:00
- commands:
2020-12-28 16:21:51 +01:00
- git fetch -tq
2021-09-13 10:53:45 +02:00
image: python:3.9
name: fetch
- commands:
2020-12-28 16:21:51 +01:00
- pip install poetry poetry-dynamic-versioning -qq
- poetry config experimental.new-installer false
- poetry install -E ansible-base
- poetry run pytest
2020-12-28 16:21:51 +01:00
- poetry version
- poetry run ansible-later --help
2019-02-25 17:18:10 +01:00
depends_on:
- fetch
2021-09-13 10:53:45 +02:00
environment:
PY_COLORS: 1
image: python:3.6
name: python36-pytest
- commands:
2020-12-28 16:21:51 +01:00
- pip install poetry poetry-dynamic-versioning -qq
- poetry config experimental.new-installer false
- poetry install -E ansible-base
- poetry run pytest
2020-12-28 16:21:51 +01:00
- poetry version
- poetry run ansible-later --help
depends_on:
- fetch
2021-09-13 10:53:45 +02:00
environment:
PY_COLORS: 1
image: python:3.7
name: python37-pytest
- commands:
2020-12-28 16:21:51 +01:00
- pip install poetry poetry-dynamic-versioning -qq
- poetry config experimental.new-installer false
- poetry install -E ansible-base
- poetry run pytest
2020-12-28 16:21:51 +01:00
- poetry version
- poetry run ansible-later --help
2019-02-25 17:18:10 +01:00
depends_on:
- fetch
2021-09-13 10:53:45 +02:00
environment:
PY_COLORS: 1
image: python:3.8
name: python38-pytest
- commands:
2020-12-28 16:21:51 +01:00
- pip install poetry poetry-dynamic-versioning -qq
- poetry config experimental.new-installer false
- poetry install -E ansible-base
- poetry run pytest
2020-12-28 16:21:51 +01:00
- poetry version
- poetry run ansible-later --help
2020-11-13 14:28:26 +01:00
depends_on:
- fetch
2021-09-13 10:53:45 +02:00
environment:
PY_COLORS: 1
2020-11-13 14:28:26 +01:00
image: python:3.9
2021-09-13 10:53:45 +02:00
name: python39-pytest
- commands:
2020-04-05 14:57:44 +02:00
- pip install codecov -qq
- codecov --required -X gcov
2019-02-25 17:18:10 +01:00
depends_on:
2020-06-03 13:21:17 +02:00
- python36-pytest
- python37-pytest
- python38-pytest
- python39-pytest
2021-09-13 10:53:45 +02:00
environment:
CODECOV_TOKEN:
from_secret: codecov_token
PY_COLORS: 1
image: python:3.9
name: codecov
2019-10-10 17:58:58 +02:00
trigger:
ref:
- refs/heads/main
2020-01-15 00:10:20 +01:00
- refs/tags/**
- refs/pull/**
2019-10-10 17:58:58 +02:00
---
2021-09-13 10:53:45 +02:00
depends_on:
- test
2019-10-10 17:58:58 +02:00
kind: pipeline
name: security
platform:
arch: amd64
2021-09-13 10:53:45 +02:00
os: linux
2019-10-10 17:58:58 +02:00
steps:
2021-09-13 10:53:45 +02:00
- commands:
2020-12-28 16:21:51 +01:00
- git fetch -tq
- pip install poetry poetry-dynamic-versioning -qq
- poetry install -E ansible-base
2020-12-28 16:21:51 +01:00
- poetry run bandit -r ./ansiblelater -x ./ansiblelater/test
2019-10-10 17:58:58 +02:00
environment:
PY_COLORS: 1
2021-09-13 10:53:45 +02:00
image: python:3.9
name: bandit
2019-03-22 10:29:06 +01:00
trigger:
ref:
- refs/heads/main
2020-01-15 00:10:20 +01:00
- refs/tags/**
- refs/pull/**
2019-02-25 17:18:10 +01:00
---
2021-09-13 10:53:45 +02:00
depends_on:
- security
2019-02-25 17:18:10 +01:00
kind: pipeline
2019-10-10 17:58:58 +02:00
name: build-package
2019-02-25 17:18:10 +01:00
platform:
arch: amd64
2021-09-13 10:53:45 +02:00
os: linux
2019-02-25 17:18:10 +01:00
steps:
2021-09-13 10:53:45 +02:00
- commands:
2020-12-28 16:21:51 +01:00
- git fetch -tq
- pip install poetry poetry-dynamic-versioning -qq
- poetry build
2021-09-13 10:53:45 +02:00
image: python:3.9
name: build
- commands:
2020-01-15 00:10:20 +01:00
- cd dist/ && sha256sum * > ../sha256sum.txt
2021-09-13 10:53:45 +02:00
image: alpine
name: checksum
- commands:
- git fetch -tq
2021-09-13 10:53:45 +02:00
- git-chglog --no-color --no-emoji -o CHANGELOG.md ${DRONE_TAG:---next-tag unreleased
unreleased}
image: thegeeklab/git-chglog
name: changelog-generate
- commands:
- prettier CHANGELOG.md
- prettier -w CHANGELOG.md
2021-09-13 10:53:45 +02:00
image: thegeeklab/alpine-tools
name: changelog-format
- image: plugins/github-release
name: publish-github
2019-02-25 17:18:10 +01:00
settings:
api_key:
from_secret: github_token
files:
2020-01-15 00:10:20 +01:00
- dist/*
2019-02-25 17:18:10 +01:00
- sha256sum.txt
2019-03-22 10:29:06 +01:00
note: CHANGELOG.md
overwrite: true
2020-01-15 00:10:20 +01:00
title: ${DRONE_TAG}
2019-02-25 17:18:10 +01:00
when:
2019-10-10 17:58:58 +02:00
ref:
2020-01-15 00:10:20 +01:00
- refs/tags/**
2021-09-13 10:53:45 +02:00
- commands:
2020-12-28 16:21:51 +01:00
- git fetch -tq
- pip install poetry poetry-dynamic-versioning -qq
- poetry publish -n
environment:
POETRY_HTTP_BASIC_PYPI_PASSWORD:
2019-02-25 18:50:26 +01:00
from_secret: pypi_password
2020-12-28 16:21:51 +01:00
POETRY_HTTP_BASIC_PYPI_USERNAME:
2019-02-25 18:50:26 +01:00
from_secret: pypi_username
2021-09-13 10:53:45 +02:00
image: python:3.9
name: publish-pypi
2019-02-25 18:50:26 +01:00
when:
2019-10-10 17:58:58 +02:00
ref:
2020-01-15 00:10:20 +01:00
- refs/tags/**
2019-10-10 17:58:58 +02:00
trigger:
ref:
- refs/heads/main
2020-01-15 00:10:20 +01:00
- refs/tags/**
- refs/pull/**
2021-09-13 10:53:45 +02:00
---
2019-10-10 17:58:58 +02:00
depends_on:
- security
kind: pipeline
name: build-container-amd64
platform:
arch: amd64
2021-09-13 10:53:45 +02:00
os: linux
2019-10-10 17:58:58 +02:00
steps:
2021-09-13 10:53:45 +02:00
- commands:
2020-12-28 16:21:51 +01:00
- git fetch -tq
- pip install poetry poetry-dynamic-versioning -qq
- poetry build
2021-09-13 10:53:45 +02:00
image: python:3.9
name: build
- depends_on:
- build
2021-01-17 20:04:05 +01:00
image: thegeeklab/drone-docker:19
2021-09-13 10:53:45 +02:00
name: dryrun
2019-10-10 17:58:58 +02:00
settings:
2020-12-28 16:52:28 +01:00
dockerfile: docker/Dockerfile.amd64
2019-10-10 17:58:58 +02:00
dry_run: true
password:
from_secret: docker_password
2020-09-27 14:56:49 +02:00
repo: thegeeklab/${DRONE_REPO_NAME}
2019-10-10 17:58:58 +02:00
username:
from_secret: docker_username
when:
ref:
2020-01-15 00:10:20 +01:00
- refs/pull/**
2021-09-13 10:53:45 +02:00
- depends_on:
- dryrun
2021-01-17 20:04:05 +01:00
image: thegeeklab/drone-docker:19
2021-09-13 10:53:45 +02:00
name: publish-dockerhub
2019-10-10 17:58:58 +02:00
settings:
auto_tag: true
auto_tag_suffix: amd64
2020-12-28 16:52:28 +01:00
dockerfile: docker/Dockerfile.amd64
2019-10-10 17:58:58 +02:00
password:
from_secret: docker_password
2020-09-27 14:56:49 +02:00
repo: thegeeklab/${DRONE_REPO_NAME}
2019-10-10 17:58:58 +02:00
username:
from_secret: docker_username
when:
ref:
- refs/heads/main
2020-01-15 00:10:20 +01:00
- refs/tags/**
2021-09-13 10:53:45 +02:00
- depends_on:
2020-09-06 19:59:28 +02:00
- dryrun
2021-01-17 20:04:05 +01:00
image: thegeeklab/drone-docker:19
2021-09-13 10:53:45 +02:00
name: publish-quay
2020-09-06 19:59:28 +02:00
settings:
auto_tag: true
auto_tag_suffix: amd64
2020-12-28 16:52:28 +01:00
dockerfile: docker/Dockerfile.amd64
2020-09-06 19:59:28 +02:00
password:
from_secret: quay_password
registry: quay.io
repo: quay.io/thegeeklab/${DRONE_REPO_NAME}
username:
from_secret: quay_username
when:
ref:
- refs/heads/main
2020-09-06 19:59:28 +02:00
- refs/tags/**
2019-10-10 17:58:58 +02:00
trigger:
ref:
- refs/heads/main
2020-01-15 00:10:20 +01:00
- refs/tags/**
- refs/pull/**
2021-09-13 10:53:45 +02:00
---
2019-10-10 17:58:58 +02:00
depends_on:
- security
kind: pipeline
name: build-container-arm64
platform:
arch: arm64
2021-09-13 10:53:45 +02:00
os: linux
2019-10-10 17:58:58 +02:00
steps:
2021-09-13 10:53:45 +02:00
- commands:
2020-12-28 16:21:51 +01:00
- git fetch -tq
- pip install poetry poetry-dynamic-versioning -qq
- poetry build
2021-09-13 10:53:45 +02:00
image: python:3.9
name: build
- depends_on:
- build
2021-01-17 20:04:05 +01:00
image: thegeeklab/drone-docker:19
2021-09-13 10:53:45 +02:00
name: dryrun
2019-10-10 17:58:58 +02:00
settings:
2020-12-28 16:52:28 +01:00
dockerfile: docker/Dockerfile.arm64
2019-10-10 17:58:58 +02:00
dry_run: true
password:
from_secret: docker_password
2020-09-27 14:56:49 +02:00
repo: thegeeklab/${DRONE_REPO_NAME}
2019-10-10 17:58:58 +02:00
username:
from_secret: docker_username
when:
ref:
2020-01-15 00:10:20 +01:00
- refs/pull/**
2021-09-13 10:53:45 +02:00
- depends_on:
- dryrun
2021-01-17 20:04:05 +01:00
image: thegeeklab/drone-docker:19
2021-09-13 10:53:45 +02:00
name: publish-dockerhub
2019-10-10 17:58:58 +02:00
settings:
auto_tag: true
auto_tag_suffix: arm64
2020-12-28 16:52:28 +01:00
dockerfile: docker/Dockerfile.arm64
2019-10-10 17:58:58 +02:00
password:
from_secret: docker_password
2020-09-27 14:56:49 +02:00
repo: thegeeklab/${DRONE_REPO_NAME}
2019-10-10 17:58:58 +02:00
username:
from_secret: docker_username
when:
ref:
- refs/heads/main
2020-01-15 00:10:20 +01:00
- refs/tags/**
2021-09-13 10:53:45 +02:00
- depends_on:
2020-09-06 19:59:28 +02:00
- dryrun
2021-01-17 20:04:05 +01:00
image: thegeeklab/drone-docker:19
2021-09-13 10:53:45 +02:00
name: publish-quay
2020-09-06 19:59:28 +02:00
settings:
auto_tag: true
auto_tag_suffix: arm64
2020-12-28 16:52:28 +01:00
dockerfile: docker/Dockerfile.arm64
2020-09-06 19:59:28 +02:00
password:
from_secret: quay_password
registry: quay.io
repo: quay.io/thegeeklab/${DRONE_REPO_NAME}
username:
from_secret: quay_username
when:
ref:
- refs/heads/main
2020-09-06 19:59:28 +02:00
- refs/tags/**
2019-10-10 17:58:58 +02:00
trigger:
ref:
- refs/heads/main
2020-01-15 00:10:20 +01:00
- refs/tags/**
- refs/pull/**
2021-09-13 10:53:45 +02:00
---
2019-10-10 17:58:58 +02:00
depends_on:
- security
kind: pipeline
name: build-container-arm
platform:
arch: arm
2021-09-13 10:53:45 +02:00
os: linux
2019-10-10 17:58:58 +02:00
steps:
2021-09-13 10:53:45 +02:00
- commands:
- apk add -Uq --no-cache build-base openssl-dev libffi-dev musl-dev python3-dev
git cargo
2020-12-28 16:21:51 +01:00
- git fetch -tq
- pip install poetry poetry-dynamic-versioning -qq
- poetry build
environment:
CARGO_NET_GIT_FETCH_WITH_CLI: true
2021-09-13 10:53:45 +02:00
image: python:3.9-alpine
name: build
- depends_on:
- build
2021-01-17 20:04:05 +01:00
image: thegeeklab/drone-docker:19
2021-09-13 10:53:45 +02:00
name: dryrun
2019-10-10 17:58:58 +02:00
settings:
2020-12-28 16:52:28 +01:00
dockerfile: docker/Dockerfile.arm
2019-10-10 17:58:58 +02:00
dry_run: true
password:
from_secret: docker_password
2020-09-27 14:56:49 +02:00
repo: thegeeklab/${DRONE_REPO_NAME}
2019-10-10 17:58:58 +02:00
username:
from_secret: docker_username
when:
ref:
2020-01-15 00:10:20 +01:00
- refs/pull/**
2021-09-13 10:53:45 +02:00
- depends_on:
- dryrun
2021-01-17 20:04:05 +01:00
image: thegeeklab/drone-docker:19
2021-09-13 10:53:45 +02:00
name: publish-dockerhub
2019-10-10 17:58:58 +02:00
settings:
auto_tag: true
auto_tag_suffix: arm
2020-12-28 16:52:28 +01:00
dockerfile: docker/Dockerfile.arm
2019-10-10 17:58:58 +02:00
password:
from_secret: docker_password
2020-09-27 14:56:49 +02:00
repo: thegeeklab/${DRONE_REPO_NAME}
2019-10-10 17:58:58 +02:00
username:
from_secret: docker_username
when:
ref:
- refs/heads/main
2020-01-15 00:10:20 +01:00
- refs/tags/**
2021-09-13 10:53:45 +02:00
- depends_on:
2020-09-06 19:59:28 +02:00
- dryrun
2021-01-17 20:04:05 +01:00
image: thegeeklab/drone-docker:19
2021-09-13 10:53:45 +02:00
name: publish-quay
2020-09-06 19:59:28 +02:00
settings:
auto_tag: true
auto_tag_suffix: arm
2020-12-28 16:52:28 +01:00
dockerfile: docker/Dockerfile.arm
2020-09-06 19:59:28 +02:00
password:
from_secret: quay_password
registry: quay.io
repo: quay.io/thegeeklab/${DRONE_REPO_NAME}
username:
from_secret: quay_username
when:
ref:
- refs/heads/main
2020-09-06 19:59:28 +02:00
- refs/tags/**
2019-03-22 10:29:06 +01:00
trigger:
ref:
- refs/heads/main
2020-01-15 00:10:20 +01:00
- refs/tags/**
- refs/pull/**
---
2021-09-13 10:53:45 +02:00
concurrency:
limit: 1
depends_on:
- build-package
- build-container-amd64
- build-container-arm64
- build-container-arm
2020-01-15 00:10:20 +01:00
kind: pipeline
name: docs
platform:
arch: amd64
2021-09-13 10:53:45 +02:00
os: linux
2020-01-15 00:10:20 +01:00
steps:
2021-09-13 10:53:45 +02:00
- commands:
2020-11-13 14:28:26 +01:00
- make doc
2021-09-13 10:53:45 +02:00
image: thegeeklab/alpine-tools
name: assets
- commands:
- markdownlint 'docs/content/**/*.md' 'README.md' 'CONTRIBUTING.md'
2021-09-13 10:53:45 +02:00
image: thegeeklab/markdownlint-cli
name: markdownlint
- commands:
2020-06-03 12:50:12 +02:00
- npm install -g spellchecker-cli
2021-09-13 10:53:45 +02:00
- spellchecker --files 'docs/content/**/*.md' 'README.md' -d .dictionary -p spell
indefinite-article syntax-urls --no-suggestions
2020-06-03 12:50:12 +02:00
environment:
FORCE_COLOR: true
NPM_CONFIG_LOGLEVEL: error
2021-09-13 10:53:45 +02:00
image: node:lts-alpine
name: spellcheck
- commands:
2021-05-06 22:56:08 +02:00
- hugo -s docs/ -b http://localhost/
2021-09-13 10:53:45 +02:00
image: thegeeklab/hugo:0.83.1
name: testbuild
- commands:
2020-06-03 12:50:12 +02:00
- link-validator -ro
environment:
LINK_VALIDATOR_BASE_DIR: docs/public
2021-09-13 10:53:45 +02:00
image: thegeeklab/link-validator
name: link-validation
- commands:
2021-05-06 22:56:08 +02:00
- hugo -s docs/
2021-09-13 10:53:45 +02:00
image: thegeeklab/hugo:0.83.1
name: build
- commands:
2020-06-03 12:50:12 +02:00
- npm install -g js-beautify
- html-beautify -r -f 'docs/public/**/*.html'
environment:
FORCE_COLOR: true
NPM_CONFIG_LOGLEVEL: error
2021-09-13 10:53:45 +02:00
image: node:lts-alpine
name: beautify
- image: plugins/s3-sync
name: publish
2020-01-15 00:10:20 +01:00
settings:
2020-05-26 09:19:21 +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-11-15 14:15:06 +01:00
when:
ref:
- refs/heads/main
2020-11-15 14:15:06 +01:00
- refs/tags/**
2020-01-15 00:10:20 +01:00
trigger:
ref:
- refs/heads/main
2020-01-15 00:10:20 +01:00
- refs/tags/**
2020-11-15 14:15:06 +01:00
- refs/pull/**
2019-02-25 17:18:10 +01:00
---
2021-09-13 10:53:45 +02:00
depends_on:
- docs
2019-02-25 17:18:10 +01:00
kind: pipeline
name: notifications
platform:
arch: amd64
2021-09-13 10:53:45 +02:00
os: linux
2018-12-19 11:19:07 +01:00
steps:
2021-09-13 10:53:45 +02:00
- image: plugins/manifest
name: manifest-dockerhub
2019-10-10 17:58:58 +02:00
settings:
auto_tag: true
ignore_missing: true
password:
from_secret: docker_password
2020-09-06 19:59:28 +02:00
spec: docker/manifest.tmpl
2019-10-10 17:58:58 +02:00
username:
from_secret: docker_username
2020-09-06 19:59:28 +02:00
when:
status:
- success
2021-09-13 10:53:45 +02:00
- image: plugins/manifest
name: manifest-quay
2020-09-06 19:59:28 +02:00
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
2021-09-13 10:53:45 +02:00
- environment:
2020-09-06 19:59:28 +02:00
DOCKER_PASS:
2019-10-10 17:58:58 +02:00
from_secret: docker_password
2020-09-06 19:59:28 +02:00
DOCKER_USER:
2019-10-10 17:58:58 +02:00
from_secret: docker_username
2020-09-06 19:59:28 +02:00
PUSHRM_FILE: README.md
2020-09-27 14:56:49 +02:00
PUSHRM_SHORT: Another best practice scanner for Ansible roles and playbooks
PUSHRM_TARGET: thegeeklab/${DRONE_REPO_NAME}
2021-09-13 10:53:45 +02:00
image: chko/docker-pushrm:1
name: pushrm-dockerhub
pull: always
2020-09-06 19:59:28 +02:00
when:
status:
- success
2021-09-13 10:53:45 +02:00
- environment:
2020-09-06 19:59:28 +02:00
APIKEY__QUAY_IO:
from_secret: quay_token
PUSHRM_FILE: README.md
PUSHRM_TARGET: quay.io/thegeeklab/${DRONE_REPO_NAME}
2021-09-13 10:53:45 +02:00
image: chko/docker-pushrm:1
name: pushrm-quay
pull: always
2020-09-06 19:59:28 +02:00
when:
status:
- success
2021-09-13 10:53:45 +02:00
- image: plugins/matrix
name: matrix
2019-02-25 17:18:10 +01:00
settings:
2019-10-10 22:44:04 +02:00
homeserver:
from_secret: matrix_homeserver
2019-02-25 17:18:10 +01:00
password:
from_secret: matrix_password
2019-10-10 22:44:04 +02:00
roomid:
from_secret: matrix_roomid
2021-09-13 10:53:45 +02:00
template: 'Status: **{{ build.status }}**<br/> Build: [{{ repo.Owner }}/{{ repo.Name
}}]({{ build.link }}) ({{ build.branch }}) by {{ build.author }}<br/> Message:
{{ build.message }}'
2019-02-25 17:18:10 +01:00
username:
from_secret: matrix_username
2020-09-06 19:59:28 +02:00
when:
status:
- success
- failure
2019-02-25 17:18:10 +01:00
trigger:
2019-03-22 10:29:06 +01:00
ref:
- refs/heads/main
2020-01-15 00:10:20 +01:00
- refs/tags/**
2019-02-25 17:18:10 +01:00
status:
- success
- failure
2020-12-28 16:41:15 +01:00
---
kind: signature
2021-09-13 10:53:45 +02:00
hmac: eb840b80a482cdb542fe7fcbe4f497de8b94a976e112ad5dcf78a62eaa15d2ed
2020-12-28 16:41:15 +01:00
2019-02-25 17:18:10 +01:00
...