ansible-later/.drone.yml

672 lines
12 KiB
YAML
Raw Normal View History

2018-12-19 10:19:07 +00:00
---
kind: pipeline
2019-10-10 15:58:58 +00:00
name: lint
2019-02-25 16:18:10 +00:00
platform:
os: linux
arch: amd64
steps:
2019-10-10 15:58:58 +00:00
- name: flake8
2020-11-13 13:28:26 +00:00
image: python:3.9
2019-10-10 15:58:58 +00:00
commands:
2020-12-28 15:21:51 +00:00
- git fetch -tq
- pip install poetry poetry-dynamic-versioning -qq
- poetry install -q -E ansible-base
2020-12-28 15:21:51 +00:00
- poetry run flake8 ./ansiblelater
2019-10-10 15:58:58 +00:00
environment:
PY_COLORS: 1
2020-11-27 13:13:10 +00:00
image_pull_secrets:
- docker_config
2019-10-10 15:58:58 +00:00
trigger:
ref:
- refs/heads/master
2020-01-14 23:10:20 +00:00
- refs/tags/**
- refs/pull/**
2019-10-10 15:58:58 +00:00
---
kind: pipeline
name: test
platform:
os: linux
arch: amd64
steps:
2020-12-28 15:21:51 +00:00
- name: fetch
image: python:3.9
commands:
- git fetch -tq
- name: python36-pytest
image: python:3.6
commands:
2020-12-28 15:21:51 +00:00
- pip install poetry poetry-dynamic-versioning -qq
- poetry install -q -E ansible-base
2020-12-28 15:21:51 +00:00
- poetry run pytest ansiblelater --cov=ansiblelater --cov-append --no-cov-on-fail
- poetry version
- poetry run ansible-later --help
2019-03-22 09:29:06 +00:00
environment:
PY_COLORS: 1
2019-02-25 16:18:10 +00:00
depends_on:
- fetch
2019-02-25 16:18:10 +00:00
- name: python37-pytest
image: python:3.7
commands:
2020-12-28 15:21:51 +00:00
- pip install poetry poetry-dynamic-versioning -qq
- poetry install -q -E ansible-base
2020-12-28 15:21:51 +00:00
- poetry run pytest ansiblelater --cov=ansiblelater --cov-append --no-cov-on-fail
- poetry version
- poetry run ansible-later --help
2019-03-22 09:29:06 +00:00
environment:
PY_COLORS: 1
depends_on:
- fetch
- name: python38-pytest
2020-02-03 23:12:42 +00:00
image: python:3.8
commands:
2020-12-28 15:21:51 +00:00
- pip install poetry poetry-dynamic-versioning -qq
- poetry install -q -E ansible-base
2020-12-28 15:21:51 +00:00
- poetry run pytest ansiblelater --cov=ansiblelater --cov-append --no-cov-on-fail
- poetry version
- poetry run ansible-later --help
2019-03-22 09:29:06 +00:00
environment:
PY_COLORS: 1
2019-02-25 16:18:10 +00:00
depends_on:
- fetch
2019-02-25 16:18:10 +00:00
2020-11-13 13:28:26 +00:00
- name: python39-pytest
image: python:3.9
commands:
2020-12-28 15:21:51 +00:00
- pip install poetry poetry-dynamic-versioning -qq
- poetry install -q -E ansible-base
2020-12-28 15:21:51 +00:00
- poetry run pytest ansiblelater --cov=ansiblelater --cov-append --no-cov-on-fail
- poetry version
- poetry run ansible-later --help
2020-11-13 13:28:26 +00:00
environment:
PY_COLORS: 1
depends_on:
- fetch
2020-11-13 13:28:26 +00:00
2019-03-22 09:29:06 +00:00
- name: codecov
2020-11-13 13:28:26 +00:00
image: python:3.9
2019-02-25 16:18:10 +00:00
commands:
2020-04-05 12:57:44 +00:00
- pip install codecov -qq
- codecov --required -X gcov
2019-03-22 09:29:06 +00:00
environment:
CODECOV_TOKEN:
from_secret: codecov_token
PY_COLORS: 1
2019-02-25 16:18:10 +00:00
depends_on:
2020-06-03 11:21:17 +00:00
- python36-pytest
- python37-pytest
- python38-pytest
- python39-pytest
2019-10-10 15:58:58 +00:00
2020-11-27 13:13:10 +00:00
image_pull_secrets:
- docker_config
2019-10-10 15:58:58 +00:00
trigger:
ref:
- refs/heads/master
2020-01-14 23:10:20 +00:00
- refs/tags/**
- refs/pull/**
2019-10-10 15:58:58 +00:00
depends_on:
- lint
---
kind: pipeline
name: security
platform:
os: linux
arch: amd64
steps:
- name: bandit
2020-11-13 13:28:26 +00:00
image: python:3.9
2019-10-10 15:58:58 +00:00
commands:
2020-12-28 15:21:51 +00:00
- git fetch -tq
- pip install poetry poetry-dynamic-versioning -qq
- poetry install -q -E ansible-base
2020-12-28 15:21:51 +00:00
- poetry run bandit -r ./ansiblelater -x ./ansiblelater/test
2019-10-10 15:58:58 +00:00
environment:
PY_COLORS: 1
2019-03-22 09:29:06 +00:00
2020-11-27 13:13:10 +00:00
image_pull_secrets:
- docker_config
2019-03-22 09:29:06 +00:00
trigger:
ref:
- refs/heads/master
2020-01-14 23:10:20 +00:00
- refs/tags/**
- refs/pull/**
2019-02-25 16:18:10 +00:00
2019-10-10 15:58:58 +00:00
depends_on:
- test
2019-02-25 16:18:10 +00:00
---
kind: pipeline
2019-10-10 15:58:58 +00:00
name: build-package
2019-02-25 16:18:10 +00:00
platform:
os: linux
arch: amd64
steps:
- name: build
2020-11-13 13:28:26 +00:00
image: python:3.9
2019-02-25 16:18:10 +00:00
commands:
2020-12-28 15:21:51 +00:00
- git fetch -tq
- pip install poetry poetry-dynamic-versioning -qq
- poetry build
2019-02-25 16:18:10 +00:00
- name: checksum
image: alpine
commands:
2020-01-14 23:10:20 +00:00
- cd dist/ && sha256sum * > ../sha256sum.txt
2019-02-25 16:18:10 +00:00
- name: publish-github
image: plugins/github-release
settings:
api_key:
from_secret: github_token
files:
2020-01-14 23:10:20 +00:00
- dist/*
2019-02-25 16:18:10 +00:00
- sha256sum.txt
2019-03-22 09:29:06 +00:00
note: CHANGELOG.md
overwrite: true
2020-01-14 23:10:20 +00:00
title: ${DRONE_TAG}
2019-02-25 16:18:10 +00:00
when:
2019-10-10 15:58:58 +00:00
ref:
2020-01-14 23:10:20 +00:00
- refs/tags/**
2019-02-25 16:18:10 +00:00
2019-02-25 17:50:26 +00:00
- name: publish-pypi
2020-12-28 15:21:51 +00: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-02-25 17:50:26 +00:00
from_secret: pypi_password
2020-12-28 15:21:51 +00:00
POETRY_HTTP_BASIC_PYPI_USERNAME:
2019-02-25 17:50:26 +00:00
from_secret: pypi_username
when:
2019-10-10 15:58:58 +00:00
ref:
2020-01-14 23:10:20 +00:00
- refs/tags/**
2019-10-10 15:58:58 +00:00
2020-11-27 13:13:10 +00:00
image_pull_secrets:
- docker_config
2019-10-10 15:58:58 +00:00
trigger:
ref:
- refs/heads/master
2020-01-14 23:10:20 +00:00
- refs/tags/**
- refs/pull/**
2019-10-10 15:58:58 +00:00
depends_on:
- security
---
kind: pipeline
name: build-container-amd64
platform:
os: linux
arch: amd64
steps:
- name: build
2020-11-13 13:28:26 +00:00
image: python:3.9
2019-10-10 15:58:58 +00:00
commands:
2020-12-28 15:21:51 +00:00
- git fetch -tq
- pip install poetry poetry-dynamic-versioning -qq
- poetry build
2019-10-10 15:58:58 +00:00
- name: dryrun
2020-11-27 13:13:10 +00:00
image: plugins/docker:19
2019-10-10 15:58:58 +00:00
settings:
2020-11-27 13:13:10 +00:00
config:
from_secret: docker_config
2020-12-28 15:52:28 +00:00
dockerfile: docker/Dockerfile.amd64
2019-10-10 15:58:58 +00:00
dry_run: true
password:
from_secret: docker_password
2020-09-27 12:56:49 +00:00
repo: thegeeklab/${DRONE_REPO_NAME}
2019-10-10 15:58:58 +00:00
username:
from_secret: docker_username
when:
ref:
2020-01-14 23:10:20 +00:00
- refs/pull/**
2020-09-06 17:59:28 +00:00
depends_on:
- build
2019-10-10 15:58:58 +00:00
2020-09-06 17:59:28 +00:00
- name: publish-dockerhub
2020-11-27 13:13:10 +00:00
image: plugins/docker:19
2019-10-10 15:58:58 +00:00
settings:
auto_tag: true
auto_tag_suffix: amd64
2020-11-27 13:13:10 +00:00
config:
from_secret: docker_config
2020-12-28 15:52:28 +00:00
dockerfile: docker/Dockerfile.amd64
2019-10-10 15:58:58 +00:00
password:
from_secret: docker_password
2020-09-27 12:56:49 +00:00
repo: thegeeklab/${DRONE_REPO_NAME}
2019-10-10 15:58:58 +00:00
username:
from_secret: docker_username
when:
ref:
- refs/heads/master
2020-01-14 23:10:20 +00:00
- refs/tags/**
2020-09-06 17:59:28 +00:00
depends_on:
- dryrun
- name: publish-quay
2020-11-27 13:13:10 +00:00
image: plugins/docker:19
2020-09-06 17:59:28 +00:00
settings:
auto_tag: true
auto_tag_suffix: amd64
2020-11-27 13:13:10 +00:00
config:
from_secret: docker_config
2020-12-28 15:52:28 +00:00
dockerfile: docker/Dockerfile.amd64
2020-09-06 17:59:28 +00: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/master
- refs/tags/**
depends_on:
- dryrun
2019-10-10 15:58:58 +00:00
2020-11-27 13:13:10 +00:00
image_pull_secrets:
- docker_config
2019-10-10 15:58:58 +00:00
trigger:
ref:
- refs/heads/master
2020-01-14 23:10:20 +00:00
- refs/tags/**
- refs/pull/**
2019-10-10 15:58:58 +00:00
depends_on:
- security
---
kind: pipeline
name: build-container-arm64
platform:
os: linux
arch: arm64
steps:
- name: build
2020-11-13 13:28:26 +00:00
image: python:3.9
2019-10-10 15:58:58 +00:00
commands:
2020-12-28 15:21:51 +00:00
- git fetch -tq
- pip install poetry poetry-dynamic-versioning -qq
- poetry build
2019-10-10 15:58:58 +00:00
- name: dryrun
2020-11-27 13:13:10 +00:00
image: plugins/docker:19
2019-10-10 15:58:58 +00:00
settings:
2020-11-27 13:13:10 +00:00
config:
from_secret: docker_config
2020-12-28 15:52:28 +00:00
dockerfile: docker/Dockerfile.arm64
2019-10-10 15:58:58 +00:00
dry_run: true
password:
from_secret: docker_password
2020-09-27 12:56:49 +00:00
repo: thegeeklab/${DRONE_REPO_NAME}
2019-10-10 15:58:58 +00:00
username:
from_secret: docker_username
when:
ref:
2020-01-14 23:10:20 +00:00
- refs/pull/**
2020-09-06 17:59:28 +00:00
depends_on:
- build
2019-10-10 15:58:58 +00:00
2020-09-06 17:59:28 +00:00
- name: publish-dockerhub
2020-11-27 13:13:10 +00:00
image: plugins/docker:19
2019-10-10 15:58:58 +00:00
settings:
auto_tag: true
auto_tag_suffix: arm64
2020-11-27 13:13:10 +00:00
config:
from_secret: docker_config
2020-12-28 15:52:28 +00:00
dockerfile: docker/Dockerfile.arm64
2019-10-10 15:58:58 +00:00
password:
from_secret: docker_password
2020-09-27 12:56:49 +00:00
repo: thegeeklab/${DRONE_REPO_NAME}
2019-10-10 15:58:58 +00:00
username:
from_secret: docker_username
when:
ref:
- refs/heads/master
2020-01-14 23:10:20 +00:00
- refs/tags/**
2020-09-06 17:59:28 +00:00
depends_on:
- dryrun
- name: publish-quay
2020-11-27 13:13:10 +00:00
image: plugins/docker:19
2020-09-06 17:59:28 +00:00
settings:
auto_tag: true
auto_tag_suffix: arm64
2020-11-27 13:13:10 +00:00
config:
from_secret: docker_config
2020-12-28 15:52:28 +00:00
dockerfile: docker/Dockerfile.arm64
2020-09-06 17:59:28 +00: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/master
- refs/tags/**
depends_on:
- dryrun
2019-10-10 15:58:58 +00:00
2020-11-27 13:13:10 +00:00
image_pull_secrets:
- docker_config
2019-10-10 15:58:58 +00:00
trigger:
ref:
- refs/heads/master
2020-01-14 23:10:20 +00:00
- refs/tags/**
- refs/pull/**
2019-10-10 15:58:58 +00:00
depends_on:
- security
---
kind: pipeline
name: build-container-arm
platform:
os: linux
arch: arm
steps:
- name: build
2020-11-13 13:28:26 +00:00
image: python:3.9
2019-10-10 15:58:58 +00:00
commands:
2020-12-28 15:21:51 +00:00
- git fetch -tq
- pip install poetry poetry-dynamic-versioning -qq
- poetry build
2019-10-10 15:58:58 +00:00
- name: dryrun
2020-11-27 13:13:10 +00:00
image: plugins/docker:19
2019-10-10 15:58:58 +00:00
settings:
2020-11-27 13:13:10 +00:00
config:
from_secret: docker_config
2020-12-28 15:52:28 +00:00
dockerfile: docker/Dockerfile.arm
2019-10-10 15:58:58 +00:00
dry_run: true
password:
from_secret: docker_password
2020-09-27 12:56:49 +00:00
repo: thegeeklab/${DRONE_REPO_NAME}
2019-10-10 15:58:58 +00:00
username:
from_secret: docker_username
when:
ref:
2020-01-14 23:10:20 +00:00
- refs/pull/**
2020-09-06 17:59:28 +00:00
depends_on:
- build
2019-10-10 15:58:58 +00:00
2020-09-06 17:59:28 +00:00
- name: publish-dockerhub
2020-11-27 13:13:10 +00:00
image: plugins/docker:19
2019-10-10 15:58:58 +00:00
settings:
auto_tag: true
auto_tag_suffix: arm
2020-11-27 13:13:10 +00:00
config:
from_secret: docker_config
2020-12-28 15:52:28 +00:00
dockerfile: docker/Dockerfile.arm
2019-10-10 15:58:58 +00:00
password:
from_secret: docker_password
2020-09-27 12:56:49 +00:00
repo: thegeeklab/${DRONE_REPO_NAME}
2019-10-10 15:58:58 +00:00
username:
from_secret: docker_username
when:
ref:
- refs/heads/master
2020-01-14 23:10:20 +00:00
- refs/tags/**
2020-09-06 17:59:28 +00:00
depends_on:
- dryrun
- name: publish-quay
2020-11-27 13:13:10 +00:00
image: plugins/docker:19
2020-09-06 17:59:28 +00:00
settings:
auto_tag: true
auto_tag_suffix: arm
2020-11-27 13:13:10 +00:00
config:
from_secret: docker_config
2020-12-28 15:52:28 +00:00
dockerfile: docker/Dockerfile.arm
2020-09-06 17:59:28 +00: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/master
- refs/tags/**
depends_on:
- dryrun
2019-02-25 16:18:10 +00:00
2020-11-27 13:13:10 +00:00
image_pull_secrets:
- docker_config
2019-03-22 09:29:06 +00:00
trigger:
ref:
- refs/heads/master
2020-01-14 23:10:20 +00:00
- refs/tags/**
- refs/pull/**
2019-03-22 09:29:06 +00:00
2019-02-25 16:18:10 +00:00
depends_on:
2019-10-10 15:58:58 +00:00
- security
2019-02-25 16:18:10 +00:00
2020-01-14 23:10:20 +00:00
---
kind: pipeline
name: docs
platform:
os: linux
arch: amd64
concurrency:
limit: 1
steps:
- name: assets
2020-11-13 13:28:26 +00:00
image: thegeeklab/alpine-tools
2020-01-14 23:10:20 +00:00
commands:
2020-11-13 13:28:26 +00:00
- make doc
2020-01-14 23:10:20 +00:00
2020-06-03 10:50:12 +00:00
- name: markdownlint
image: node:lts-alpine
2020-01-14 23:10:20 +00:00
commands:
2020-06-03 10:50:12 +00:00
- npm install -g markdownlint-cli
- markdownlint 'docs/content/**/*.md' 'README.md'
environment:
FORCE_COLOR: true
NPM_CONFIG_LOGLEVEL: error
- 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
2020-08-01 18:26:42 +00:00
image: klakegg/hugo:0.74.3-ext-alpine
2020-06-03 10:50:12 +00:00
commands:
- hugo-official -s docs/ -b http://localhost/
- name: link-validation
2020-09-27 12:56:49 +00:00
image: thegeeklab/link-validator
2020-06-03 10:50:12 +00:00
commands:
- link-validator -ro
environment:
LINK_VALIDATOR_BASE_DIR: docs/public
- name: build
2020-08-01 18:26:42 +00:00
image: klakegg/hugo:0.74.3-ext-alpine
2020-06-03 10:50:12 +00:00
commands:
- hugo-official -s docs/
- 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-14 23:10:20 +00:00
- name: publish
2020-05-26 07:19:21 +00:00
image: plugins/s3-sync
2020-01-14 23:10:20 +00:00
settings:
2020-05-26 07:19:21 +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-15 13:15:06 +00:00
when:
ref:
- refs/heads/master
- refs/tags/**
2020-01-14 23:10:20 +00:00
2020-11-27 13:13:10 +00:00
image_pull_secrets:
- docker_config
2020-01-14 23:10:20 +00:00
trigger:
ref:
- refs/heads/master
- refs/tags/**
2020-11-15 13:15:06 +00:00
- refs/pull/**
2020-01-14 23:10:20 +00:00
depends_on:
- build-package
- build-container-amd64
- build-container-arm64
- build-container-arm
2019-02-25 16:18:10 +00:00
---
kind: pipeline
name: notifications
platform:
os: linux
arch: amd64
2018-12-19 10:19:07 +00:00
steps:
2020-09-06 17:59:28 +00:00
- name: manifest-dockerhub
2019-10-10 15:58:58 +00:00
image: plugins/manifest
settings:
auto_tag: true
ignore_missing: true
password:
from_secret: docker_password
2020-09-06 17:59:28 +00:00
spec: docker/manifest.tmpl
2019-10-10 15:58:58 +00:00
username:
from_secret: docker_username
2020-09-06 17:59:28 +00:00
when:
status:
- success
- 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
2019-10-10 15:58:58 +00:00
2020-09-06 17:59:28 +00:00
- name: pushrm-dockerhub
pull: always
image: chko/docker-pushrm:1
2019-10-10 15:58:58 +00:00
environment:
2020-09-06 17:59:28 +00:00
DOCKER_PASS:
2019-10-10 15:58:58 +00:00
from_secret: docker_password
2020-09-06 17:59:28 +00:00
DOCKER_USER:
2019-10-10 15:58:58 +00:00
from_secret: docker_username
2020-09-06 17:59:28 +00:00
PUSHRM_FILE: README.md
2020-09-27 12:56:49 +00:00
PUSHRM_SHORT: Another best practice scanner for Ansible roles and playbooks
PUSHRM_TARGET: thegeeklab/${DRONE_REPO_NAME}
2020-09-06 17:59:28 +00: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-10 15:58:58 +00:00
2019-02-25 17:52:19 +00:00
- name: matrix
image: plugins/matrix
2019-02-25 16:18:10 +00:00
settings:
2019-10-10 20:44:04 +00:00
homeserver:
from_secret: matrix_homeserver
2019-02-25 16:18:10 +00:00
password:
from_secret: matrix_password
2019-10-10 20:44:04 +00:00
roomid:
from_secret: matrix_roomid
2019-02-25 16:18:10 +00:00
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-06 17:59:28 +00:00
when:
status:
- success
- failure
2019-02-25 16:18:10 +00:00
2020-11-27 13:13:10 +00:00
image_pull_secrets:
- docker_config
2019-02-25 16:18:10 +00:00
trigger:
2019-03-22 09:29:06 +00:00
ref:
- refs/heads/master
2020-01-14 23:10:20 +00:00
- refs/tags/**
2019-02-25 16:18:10 +00:00
status:
- success
- failure
depends_on:
2020-01-14 23:10:20 +00:00
- docs
2019-10-10 15:58:58 +00:00
2020-12-28 15:41:15 +00:00
---
kind: signature
hmac: eaff1a423a2b5218072b02e07b60be3fab4aa4da5908ddd750469fa9b15434a4
2020-12-28 15:41:15 +00:00
2019-02-25 16:18:10 +00:00
...