Go manual with drone pipelines
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Luke Murphy 2020-04-24 14:27:49 +02:00
parent 538171b193
commit 1cdd217e6b
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
1 changed files with 36 additions and 16 deletions

View File

@ -1,23 +1,43 @@
---
matrix:
include:
- IMAGE: 3.8-buster
TOXENV: linters
- IMAGE: 3.8-buster
TOXENV: packaging
- IMAGE: 3.8-buster
TOXENV: py38
pipeline:
build:
image: python:${IMAGE}
kind: pipeline
name: linters
steps:
- name: tox -e linters
image: python:3.8-buster
commands:
- pip install tox==3.14.6
- tox -e ${TOXENV}
integration:
- tox -e linters
---
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
commands:
- pip install -e .
- cd integration-test-role && molecule test
depends_on:
- linters
- packaging
- py38