From 9e3b8b88293b8a8b1459b2c7fcefd2cdf5444166 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Mon, 28 Jan 2019 23:20:22 +0100 Subject: [PATCH] try to fix pipeline dependencies --- .drone.yml | 33 ++++++++------------------------- 1 file changed, 8 insertions(+), 25 deletions(-) diff --git a/.drone.yml b/.drone.yml index ae0ee99..9b3ca43 100644 --- a/.drone.yml +++ b/.drone.yml @@ -11,6 +11,8 @@ steps: commands: - pip install tox -q - tox -e $(tox -l | grep py27 | xargs | sed 's/ /,/g') -q + depends_on: + - clone when: event: - push @@ -24,6 +26,8 @@ steps: commands: - pip install tox -q - tox -e $(tox -l | grep py35 | xargs | sed 's/ /,/g') -q + depends_on: + - clone when: event: - push @@ -37,6 +41,8 @@ steps: commands: - pip install tox -q - tox -e $(tox -l | grep py36 | xargs | sed 's/ /,/g') -q + depends_on: + - clone when: event: - push @@ -50,6 +56,8 @@ steps: commands: - pip install tox -q - tox -e $(tox -l | grep py37 | xargs | sed 's/ /,/g') -q + depends_on: + - clone when: event: - push @@ -82,11 +90,6 @@ steps: event: - push - tag - depends_on: - - test2.7 - - test3.5 - - test3.6 - - test3.7 - name: gpg-sign image: plugins/gpgsign:1 @@ -103,11 +106,6 @@ steps: event: - push - tag - depends_on: - - test2.7 - - test3.5 - - test3.6 - - test3.7 - name: publish image: plugins/github-release @@ -120,11 +118,6 @@ steps: when: event: - tag - depends_on: - - test2.7 - - test3.5 - - test3.6 - - test3.7 - name: pypi_publish image: xoxys/drone-pypi:0.1.0 @@ -139,11 +132,6 @@ steps: when: event: - tag - depends_on: - - test2.7 - - test3.5 - - test3.6 - - test3.7 - name: notify image: plugins/matrix @@ -155,11 +143,6 @@ steps: from_secret: matrix_username password: from_secret: matrix_password - depends_on: - - test2.7 - - test3.5 - - test3.6 - - test3.7 when: status: - success