molecule-hetznercloud/.drone.yml

93 lines
1.5 KiB
YAML
Raw Normal View History

2020-04-25 05:54:57 +00:00
---
kind: pipeline
name: linters
steps:
- name: tox -e linters
image: python:3.9-buster
2020-04-25 05:54:57 +00:00
commands:
- pip install tox
2020-04-25 05:54:57 +00:00
- tox -e linters
---
kind: pipeline
name: packaging
steps:
- name: tox -e packaging
image: python:3.9-buster
2020-04-25 05:54:57 +00:00
commands:
- pip install tox
2020-04-25 05:54:57 +00:00
- tox -e packaging
depends_on:
- linters
2020-04-25 05:54:57 +00:00
2020-04-27 11:00:46 +00:00
---
kind: pipeline
name: py36
steps:
- name: tox -e py36
image: python:3.6-buster
commands:
- pip install tox
2020-04-27 11:00:46 +00:00
- tox -e py36
depends_on:
- linters
2020-04-27 11:00:46 +00:00
---
kind: pipeline
name: py37
steps:
- name: tox -e py37
image: python:3.7-buster
commands:
- pip install tox
2020-04-27 11:00:46 +00:00
- tox -e py37
depends_on:
- linters
2020-04-27 11:00:46 +00:00
2020-04-25 05:54:57 +00:00
---
kind: pipeline
name: py38
steps:
- name: tox -e py38
image: python:3.8-buster
commands:
- pip install tox
2020-04-25 06:14:56 +00:00
- tox -e py38
depends_on:
- linters
2020-04-25 05:54:57 +00:00
2020-04-25 22:55:21 +00:00
---
kind: pipeline
name: devel
steps:
- name: tox -e devel
image: python:3.9-buster
2020-04-25 22:55:21 +00:00
failure: ignore
commands:
- pip install tox
2020-04-25 22:55:21 +00:00
- tox -e devel
depends_on:
- linters
2020-04-25 22:55:21 +00:00
2020-04-24 12:27:49 +00:00
---
kind: pipeline
name: integration
steps:
- name: molecule test
image: python:3.9-buster
environment:
2020-04-24 13:13:42 +00:00
MOLECULE_NO_LOG: false
HCLOUD_TOKEN:
from_secret: HCLOUD_TOKEN
2020-04-24 12:12:57 +00:00
commands:
- pip install -e .
2021-05-28 13:30:17 +00:00
- pip install "ansible>=2.10, <2.11" netaddr
2020-04-25 05:50:45 +00:00
- export INSTANCE_UUID=$(openssl rand -hex 5)
2020-04-24 13:09:25 +00:00
- cd integration && molecule test
2020-04-25 05:54:57 +00:00
depends_on:
- linters
- packaging
2020-04-27 11:00:46 +00:00
- py36
- py37
2020-04-25 05:54:57 +00:00
- py38