ansible-later/.drone.yml

476 lines
8.3 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:
os: linux
arch: amd64
steps:
2019-10-10 17:58:58 +02:00
- name: flake8
2020-04-06 00:30:37 +02:00
image: python:3.8
2019-10-10 17:58:58 +02:00
commands:
- pip install -r test-requirements.txt -qq
- pip install -qq .
- flake8 ./ansiblelater
environment:
PY_COLORS: 1
trigger:
ref:
- refs/heads/master
2020-01-15 00:10:20 +01:00
- refs/tags/**
- refs/pull/**
2019-10-10 17:58:58 +02:00
---
kind: pipeline
name: test
platform:
os: linux
arch: amd64
steps:
- name: python35-ansible
image: python:3.5
commands:
2019-03-22 10:29:06 +01:00
- pip install tox -qq
2020-01-15 00:10:20 +01:00
- tox -e $(tox -l | grep py35 | xargs | sed 's/ /,/g') -q
2019-03-22 10:29:06 +01:00
environment:
PY_COLORS: 1
depends_on:
- clone
2019-10-10 17:58:58 +02:00
- name: python36-ansible
image: python:3.6
commands:
2019-03-22 10:29:06 +01:00
- pip install tox -qq
2020-01-15 00:10:20 +01:00
- tox -e $(tox -l | grep py36 | xargs | sed 's/ /,/g') -q
2019-03-22 10:29:06 +01:00
environment:
PY_COLORS: 1
2019-02-25 17:18:10 +01:00
depends_on:
- clone
2019-10-10 17:58:58 +02:00
- name: python37-ansible
image: python:3.7
commands:
2019-03-22 10:29:06 +01:00
- pip install tox -qq
2020-01-15 00:10:20 +01:00
- tox -e $(tox -l | grep py37 | xargs | sed 's/ /,/g') -q
2019-03-22 10:29:06 +01:00
environment:
PY_COLORS: 1
depends_on:
- clone
2020-02-04 00:12:42 +01:00
- name: python38-ansible
image: python:3.8
commands:
2019-10-10 17:58:58 +02:00
- pip install tox -qq
2020-02-04 00:12:42 +01:00
- tox -e $(tox -l | grep py38 | xargs | sed 's/ /,/g') -q
2019-03-22 10:29:06 +01:00
environment:
PY_COLORS: 1
2019-02-25 17:18:10 +01:00
depends_on:
- clone
2019-03-22 10:29:06 +01:00
- name: codecov
2020-04-06 00:30:37 +02:00
image: python:3.8
2019-02-25 17:18:10 +01:00
commands:
2020-04-05 14:57:44 +02:00
- pip install codecov -qq
2020-01-15 00:10:20 +01:00
- coverage combine .tox/py*/.coverage
2020-04-05 14:57:44 +02:00
- codecov --required -X gcov
2019-03-22 10:29:06 +01:00
environment:
CODECOV_TOKEN:
from_secret: codecov_token
PY_COLORS: 1
2019-02-25 17:18:10 +01:00
depends_on:
2019-10-10 17:58:58 +02:00
- python35-ansible
- python36-ansible
- python37-ansible
2020-02-04 00:26:01 +01:00
- python38-ansible
2019-10-10 17:58:58 +02:00
trigger:
ref:
- refs/heads/master
2020-01-15 00:10:20 +01:00
- refs/tags/**
- refs/pull/**
2019-10-10 17:58:58 +02:00
depends_on:
- lint
---
kind: pipeline
name: security
platform:
os: linux
arch: amd64
steps:
- name: bandit
2020-04-06 00:30:37 +02:00
image: python:3.8
2019-10-10 17:58:58 +02:00
commands:
- pip install -r test-requirements.txt -qq
- pip install -qq .
2020-04-06 00:21:58 +02:00
- bandit -r ./ansiblelater -x ./ansiblelater/test
2019-10-10 17:58:58 +02:00
environment:
PY_COLORS: 1
2019-03-22 10:29:06 +01:00
trigger:
ref:
- refs/heads/master
2020-01-15 00:10:20 +01:00
- refs/tags/**
- refs/pull/**
2019-02-25 17:18:10 +01:00
2019-10-10 17:58:58 +02:00
depends_on:
- test
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:
os: linux
arch: amd64
steps:
- name: build
2020-04-06 00:30:37 +02:00
image: python:3.8
2019-02-25 17:18:10 +01:00
commands:
- python setup.py sdist bdist_wheel
- name: checksum
image: alpine
commands:
2020-01-15 00:10:20 +01:00
- cd dist/ && sha256sum * > ../sha256sum.txt
2019-02-25 17:18:10 +01:00
- name: publish-github
image: plugins/github-release
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/**
2019-02-25 17:18:10 +01:00
2019-02-25 18:50:26 +01:00
- name: publish-pypi
image: plugins/pypi
settings:
password:
from_secret: pypi_password
repository: https://upload.pypi.org/legacy/
skip_build: true
username:
from_secret: pypi_username
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/master
2020-01-15 00:10:20 +01:00
- refs/tags/**
- refs/pull/**
2019-10-10 17:58:58 +02:00
depends_on:
- security
---
kind: pipeline
name: build-container-amd64
platform:
os: linux
arch: amd64
steps:
- name: build
2020-04-06 00:30:37 +02:00
image: python:3.8
2019-10-10 17:58:58 +02:00
commands:
- python setup.py bdist_wheel
- name: dryrun
image: plugins/docker:18-linux-amd64
settings:
dockerfile: Dockerfile
dry_run: true
password:
from_secret: docker_password
repo: xoxys/ansible-later
username:
from_secret: docker_username
when:
ref:
2020-01-15 00:10:20 +01:00
- refs/pull/**
2019-10-10 17:58:58 +02:00
- name: publish
image: plugins/docker:18-linux-amd64
settings:
auto_tag: true
auto_tag_suffix: amd64
dockerfile: Dockerfile
password:
from_secret: docker_password
repo: xoxys/ansible-later
username:
from_secret: docker_username
when:
ref:
- refs/heads/master
2020-01-15 00:10:20 +01:00
- refs/tags/**
2019-10-10 17:58:58 +02:00
trigger:
ref:
- refs/heads/master
2020-01-15 00:10:20 +01:00
- refs/tags/**
- refs/pull/**
2019-10-10 17:58:58 +02:00
depends_on:
- security
---
kind: pipeline
name: build-container-arm64
platform:
os: linux
arch: arm64
steps:
- name: build
2020-04-06 00:30:37 +02:00
image: python:3.8
2019-10-10 17:58:58 +02:00
commands:
- python setup.py bdist_wheel
- name: dryrun
image: plugins/docker:18-linux-arm64
settings:
dockerfile: Dockerfile
dry_run: true
password:
from_secret: docker_password
repo: xoxys/ansible-later
username:
from_secret: docker_username
when:
ref:
2020-01-15 00:10:20 +01:00
- refs/pull/**
2019-10-10 17:58:58 +02:00
- name: publish
image: plugins/docker:18-linux-arm64
settings:
auto_tag: true
auto_tag_suffix: arm64
dockerfile: Dockerfile
password:
from_secret: docker_password
repo: xoxys/ansible-later
username:
from_secret: docker_username
when:
ref:
- refs/heads/master
2020-01-15 00:10:20 +01:00
- refs/tags/**
2019-10-10 17:58:58 +02:00
trigger:
ref:
- refs/heads/master
2020-01-15 00:10:20 +01:00
- refs/tags/**
- refs/pull/**
2019-10-10 17:58:58 +02:00
depends_on:
- security
---
kind: pipeline
name: build-container-arm
platform:
os: linux
arch: arm
steps:
- name: build
2020-04-06 00:30:37 +02:00
image: python:3.8
2019-10-10 17:58:58 +02:00
commands:
- python setup.py bdist_wheel
- name: dryrun
image: plugins/docker:18-linux-arm
settings:
dockerfile: Dockerfile
dry_run: true
password:
from_secret: docker_password
repo: xoxys/ansible-later
username:
from_secret: docker_username
when:
ref:
2020-01-15 00:10:20 +01:00
- refs/pull/**
2019-10-10 17:58:58 +02:00
- name: publish
image: plugins/docker:18-linux-arm
settings:
auto_tag: true
auto_tag_suffix: arm
dockerfile: Dockerfile
password:
from_secret: docker_password
repo: xoxys/ansible-later
username:
from_secret: docker_username
when:
ref:
- refs/heads/master
2020-01-15 00:10:20 +01:00
- refs/tags/**
2019-02-25 17:18:10 +01:00
2019-03-22 10:29:06 +01:00
trigger:
ref:
- refs/heads/master
2020-01-15 00:10:20 +01:00
- refs/tags/**
- refs/pull/**
2019-03-22 10:29:06 +01:00
2019-02-25 17:18:10 +01:00
depends_on:
2019-10-10 17:58:58 +02:00
- security
2019-02-25 17:18:10 +01:00
2020-01-15 00:10:20 +01:00
---
kind: pipeline
name: docs
platform:
os: linux
arch: amd64
concurrency:
limit: 1
steps:
- name: assets
image: byrnedo/alpine-curl
commands:
- mkdir -p docs/themes/hugo-geekdoc/
- curl -L https://github.com/xoxys/hugo-geekdoc/releases/latest/download/hugo-geekdoc.tar.gz | tar -xz -C docs/themes/hugo-geekdoc/ --strip-components=1
- name: test
image: klakegg/hugo:0.59.1-ext-alpine
commands:
- cd docs/ && hugo-official
- name: freeze
2020-02-07 23:39:59 +01:00
image: appleboy/drone-ssh:1.5.5
2020-01-15 00:10:20 +01:00
settings:
host:
from_secret: ssh_host
key:
from_secret: ssh_key
script:
- cp -R /var/www/virtual/geeklab/html/ansible-later.geekdocs.de/ /var/www/virtual/geeklab/html/ansiblelater_freeze/
- ln -sfn /var/www/virtual/geeklab/html/ansiblelater_freeze /var/www/virtual/geeklab/ansible-later.geekdocs.de
username:
from_secret: ssh_username
- name: publish
image: appleboy/drone-scp
settings:
host:
from_secret: ssh_host
key:
from_secret: ssh_key
rm: true
source: docs/public/*
strip_components: 2
target: /var/www/virtual/geeklab/html/ansible-later.geekdocs.de/
username:
from_secret: ssh_username
- name: cleanup
2020-02-07 23:39:59 +01:00
image: appleboy/drone-ssh:1.5.5
2020-01-15 00:10:20 +01:00
settings:
host:
from_secret: ssh_host
key:
from_secret: ssh_key
script:
- ln -sfn /var/www/virtual/geeklab/html/ansible-later.geekdocs.de /var/www/virtual/geeklab/ansible-later.geekdocs.de
- rm -rf /var/www/virtual/geeklab/html/ansiblelater_freeze/
username:
from_secret: ssh_username
trigger:
ref:
- refs/heads/master
- refs/tags/**
depends_on:
- build-package
- build-container-amd64
- build-container-arm64
- build-container-arm
2019-02-25 17:18:10 +01:00
---
kind: pipeline
name: notifications
platform:
os: linux
arch: amd64
2018-12-19 11:19:07 +01:00
steps:
2019-10-10 17:58:58 +02:00
- name: manifest
image: plugins/manifest
settings:
auto_tag: true
ignore_missing: true
password:
from_secret: docker_password
spec: manifest.tmpl
username:
from_secret: docker_username
- name: readme
image: sheogorath/readme-to-dockerhub
environment:
DOCKERHUB_PASSWORD:
from_secret: docker_password
DOCKERHUB_REPO_NAME: ansible-later
DOCKERHUB_REPO_PREFIX: xoxys
DOCKERHUB_USERNAME:
from_secret: docker_username
README_PATH: README.md
2020-01-15 00:43:58 +01:00
SHORT_DESCRIPTION: ansible-later - Lovely automation testing framework
2019-10-10 17:58:58 +02:00
2019-02-25 18:52:19 +01:00
- name: matrix
image: plugins/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
2019-02-25 17:18:10 +01: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
trigger:
2019-03-22 10:29:06 +01:00
ref:
- refs/heads/master
2020-01-15 00:10:20 +01:00
- refs/tags/**
2019-02-25 17:18:10 +01:00
status:
- success
- failure
depends_on:
2020-01-15 00:10:20 +01:00
- docs
2019-10-10 17:58:58 +02:00
---
kind: signature
2020-04-06 00:30:37 +02:00
hmac: 49e423952c5576de0462f252623bc51432d24658e5c893c1534cede967b51ba3
2019-02-25 17:18:10 +01:00
...