mirror of
https://github.com/thegeeklab/ansible-later.git
synced 2024-11-22 04:40:42 +00:00
drone: prepare pipeline to allow parallel python versions testing
This commit is contained in:
parent
ec71228c1e
commit
15292c5d64
72
.drone.yml
72
.drone.yml
@ -3,13 +3,53 @@ kind: pipeline
|
|||||||
name: default
|
name: default
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: test
|
- name: test2.7
|
||||||
image: randomknowledge/docker-pyenv-tox
|
image: python:2.7-alpine
|
||||||
pull: true
|
pull: always
|
||||||
environment:
|
environment:
|
||||||
PY_COLORS: "1"
|
PY_COLORS: "1"
|
||||||
commands:
|
commands:
|
||||||
- tox -q
|
- pip install tox -q
|
||||||
|
- tox -e $(tox -l | grep py27* | xargs | sed 's/ /,/g') -q
|
||||||
|
when:
|
||||||
|
event:
|
||||||
|
- push
|
||||||
|
- tag
|
||||||
|
|
||||||
|
- name: test3.5
|
||||||
|
image: python:3.5-alpine
|
||||||
|
pull: always
|
||||||
|
environment:
|
||||||
|
PY_COLORS: "1"
|
||||||
|
commands:
|
||||||
|
- pip install tox -q
|
||||||
|
- tox -e $(tox -l | grep py35* | xargs | sed 's/ /,/g') -q
|
||||||
|
when:
|
||||||
|
event:
|
||||||
|
- push
|
||||||
|
- tag
|
||||||
|
|
||||||
|
- name: test3.6
|
||||||
|
image: python:3.6-alpine
|
||||||
|
pull: always
|
||||||
|
environment:
|
||||||
|
PY_COLORS: "1"
|
||||||
|
commands:
|
||||||
|
- pip install tox -q
|
||||||
|
- tox -e $(tox -l | grep py36* | xargs | sed 's/ /,/g') -q
|
||||||
|
when:
|
||||||
|
event:
|
||||||
|
- push
|
||||||
|
- tag
|
||||||
|
|
||||||
|
- name: test3.7
|
||||||
|
image: python:3.7-alpine
|
||||||
|
pull: always
|
||||||
|
environment:
|
||||||
|
PY_COLORS: "1"
|
||||||
|
commands:
|
||||||
|
- pip install tox -q
|
||||||
|
- tox -e $(tox -l | grep py37* | xargs | sed 's/ /,/g') -q
|
||||||
when:
|
when:
|
||||||
event:
|
event:
|
||||||
- push
|
- push
|
||||||
@ -24,6 +64,11 @@ steps:
|
|||||||
event:
|
event:
|
||||||
- push
|
- push
|
||||||
- tag
|
- tag
|
||||||
|
depends_on:
|
||||||
|
- test2.7
|
||||||
|
- test3.5
|
||||||
|
- test3.6
|
||||||
|
- test3.7
|
||||||
|
|
||||||
- name: checksum
|
- name: checksum
|
||||||
image: alpine
|
image: alpine
|
||||||
@ -37,6 +82,11 @@ steps:
|
|||||||
event:
|
event:
|
||||||
- push
|
- push
|
||||||
- tag
|
- tag
|
||||||
|
depends_on:
|
||||||
|
- test2.7
|
||||||
|
- test3.5
|
||||||
|
- test3.6
|
||||||
|
- test3.7
|
||||||
|
|
||||||
- name: gpg-sign
|
- name: gpg-sign
|
||||||
image: plugins/gpgsign:1
|
image: plugins/gpgsign:1
|
||||||
@ -53,6 +103,11 @@ steps:
|
|||||||
event:
|
event:
|
||||||
- push
|
- push
|
||||||
- tag
|
- tag
|
||||||
|
depends_on:
|
||||||
|
- test2.7
|
||||||
|
- test3.5
|
||||||
|
- test3.6
|
||||||
|
- test3.7
|
||||||
|
|
||||||
- name: publish
|
- name: publish
|
||||||
image: plugins/github-release
|
image: plugins/github-release
|
||||||
@ -65,6 +120,11 @@ steps:
|
|||||||
when:
|
when:
|
||||||
event:
|
event:
|
||||||
- tag
|
- tag
|
||||||
|
depends_on:
|
||||||
|
- test2.7
|
||||||
|
- test3.5
|
||||||
|
- test3.6
|
||||||
|
- test3.7
|
||||||
|
|
||||||
- name: pypi_publish
|
- name: pypi_publish
|
||||||
image: xoxys/drone-pypi:0.1.0
|
image: xoxys/drone-pypi:0.1.0
|
||||||
@ -80,3 +140,7 @@ steps:
|
|||||||
event:
|
event:
|
||||||
- tag
|
- tag
|
||||||
depends_on:
|
depends_on:
|
||||||
|
- test2.7
|
||||||
|
- test3.5
|
||||||
|
- test3.6
|
||||||
|
- test3.7
|
||||||
|
@ -197,7 +197,7 @@ use_yaml_rather_than_key_value = Standard(dict(
|
|||||||
|
|
||||||
|
|
||||||
ansible_min_version = '2.1'
|
ansible_min_version = '2.1'
|
||||||
ansible_review_min_version = '0.1.2'
|
ansible_review_min_version = '0.1.0'
|
||||||
|
|
||||||
|
|
||||||
standards = [
|
standards = [
|
||||||
|
Loading…
Reference in New Issue
Block a user