From 8b4e6aa9c6d69c95c38670cc3b04ee4156059295 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Wed, 19 Dec 2018 12:34:49 +0100 Subject: [PATCH] drone: add missing build dependencies --- .drone.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.drone.yml b/.drone.yml index 043486f..70b03e2 100644 --- a/.drone.yml +++ b/.drone.yml @@ -9,7 +9,7 @@ steps: environment: PY_COLORS: "1" commands: - - apk add --no-cache build-base + - apk add --no-cache openssl-dev libffi-dev build-base - pip install tox -q - tox -e $(tox -l | grep py27* | xargs | sed 's/ /,/g') -q when: @@ -23,7 +23,7 @@ steps: environment: PY_COLORS: "1" commands: - - apk add --no-cache build-base + - apk add --no-cache openssl-dev libffi-dev build-base - pip install tox -q - tox -e $(tox -l | grep py35* | xargs | sed 's/ /,/g') -q when: @@ -37,7 +37,7 @@ steps: environment: PY_COLORS: "1" commands: - - apk add --no-cache build-base + - apk add --no-cache openssl-dev libffi-dev build-base - pip install tox -q - tox -e $(tox -l | grep py36* | xargs | sed 's/ /,/g') -q when: @@ -51,7 +51,7 @@ steps: environment: PY_COLORS: "1" commands: - - apk add --no-cache build-base + - apk add --no-cache openssl-dev libffi-dev build-base - pip install tox -q - tox -e $(tox -l | grep py37* | xargs | sed 's/ /,/g') -q when: