Go manual with drone pipelines
Some checks failed
continuous-integration/drone/push Build is failing
Some checks failed
continuous-integration/drone/push Build is failing
This commit is contained in:
parent
538171b193
commit
1cdd217e6b
52
.drone.yml
52
.drone.yml
@ -1,23 +1,43 @@
|
|||||||
---
|
---
|
||||||
matrix:
|
kind: pipeline
|
||||||
include:
|
name: linters
|
||||||
- IMAGE: 3.8-buster
|
steps:
|
||||||
TOXENV: linters
|
- name: tox -e linters
|
||||||
|
image: python:3.8-buster
|
||||||
- IMAGE: 3.8-buster
|
|
||||||
TOXENV: packaging
|
|
||||||
|
|
||||||
- IMAGE: 3.8-buster
|
|
||||||
TOXENV: py38
|
|
||||||
|
|
||||||
pipeline:
|
|
||||||
build:
|
|
||||||
image: python:${IMAGE}
|
|
||||||
commands:
|
commands:
|
||||||
- pip install tox==3.14.6
|
- pip install tox==3.14.6
|
||||||
- tox -e ${TOXENV}
|
- tox -e linters
|
||||||
integration:
|
|
||||||
|
---
|
||||||
|
kind: pipeline
|
||||||
|
name: packaging
|
||||||
|
steps:
|
||||||
|
- name: tox -e packaging
|
||||||
|
image: python:3.8-buster
|
||||||
|
commands:
|
||||||
|
- pip install tox==3.14.6
|
||||||
|
- tox -e packaging
|
||||||
|
|
||||||
|
---
|
||||||
|
kind: pipeline
|
||||||
|
name: py38
|
||||||
|
steps:
|
||||||
|
- name: tox -e py38
|
||||||
|
image: python:3.8-buster
|
||||||
|
commands:
|
||||||
|
- pip install tox==3.14.6
|
||||||
|
- tox -e py38
|
||||||
|
|
||||||
|
---
|
||||||
|
kind: pipeline
|
||||||
|
name: integration
|
||||||
|
steps:
|
||||||
|
- name: tox -e py38
|
||||||
image: python:3.8-buster
|
image: python:3.8-buster
|
||||||
commands:
|
commands:
|
||||||
- pip install -e .
|
- pip install -e .
|
||||||
- cd integration-test-role && molecule test
|
- cd integration-test-role && molecule test
|
||||||
|
depends_on:
|
||||||
|
- linters
|
||||||
|
- packaging
|
||||||
|
- py38
|
||||||
|
Loading…
x
Reference in New Issue
Block a user