1
0
Fork 0
mirror of https://github.com/yavook/kiwi-scp.git synced 2024-11-21 12:23:00 +00:00
kiwi-scp/.drone.yml

24 lines
541 B
YAML
Raw Normal View History

2021-09-28 17:54:22 +00:00
---
kind: pipeline
name: default
steps:
2021-10-14 17:37:41 +00:00
- name: pytest
image: python:3.6-alpine3.13
commands:
2021-10-14 17:51:52 +00:00
- 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
2021-10-14 17:37:41 +00:00
2021-09-28 17:54:22 +00:00
- name: docker
image: plugins/docker
settings:
repo: ldericher/kind
2021-09-30 15:49:22 +00:00
auto_tag: true
# tags:
# - edge
2021-09-28 17:54:22 +00:00
username:
from_secret: DOCKER_USERNAME
password:
from_secret: DOCKER_PASSWORD