kiwi-scp/.drone.yml
2021-10-14 19:51:52 +02:00

24 lines
No EOL
541 B
YAML

---
kind: pipeline
name: default
steps:
- name: pytest
image: python:3.6-alpine3.13
commands:
- apk add --no-cache g++ libffi-dev
- wget -O- https://raw.githubusercontent.com/python-poetry/poetry/master/install-poetry.py | python3 -
- /root/.local/bin/poetry install
- /root/.local/bin/poetry run pytest
- name: docker
image: plugins/docker
settings:
repo: ldericher/kind
auto_tag: true
# tags:
# - edge
username:
from_secret: DOCKER_USERNAME
password:
from_secret: DOCKER_PASSWORD