From f3e68e6091f504726036cba6811ac8540d2aef20 Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Fri, 24 Apr 2020 14:32:19 +0200 Subject: [PATCH] Add missing secret and short-cut CI for now --- .drone.yml | 59 ++++++++++++++++++++++++++++-------------------------- 1 file changed, 31 insertions(+), 28 deletions(-) diff --git a/.drone.yml b/.drone.yml index 16f2ef4..9e5ef20 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,39 +1,42 @@ ---- -kind: pipeline -name: linters -steps: - - name: tox -e linters - image: python:3.8-buster - commands: - - pip install tox==3.14.6 - - tox -e linters +# --- +# kind: pipeline +# name: linters +# steps: +# - name: tox -e linters +# image: python:3.8-buster +# commands: +# - pip install tox==3.14.6 +# - 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: 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: 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 + - name: molecule test image: python:3.8-buster + environment: + HCLOUD_TOKEN: + from_secret: HCLOUD_TOKEN commands: - pip install -e . - cd integration-test-role && molecule test