Files
python-hvac/.drone.yml
Igor Shatunov a7862e0f6a
All checks were successful
continuous-integration/drone/push Build is passing
Final build pipeline
2023-01-20 15:54:19 +02:00

34 lines
687 B
YAML

---
kind: pipeline
name: default
steps:
- name: test
image: python
commands:
- export POETRY_VERSION=1.2.2
- export POETRY_HOME=/usr/local/
- curl -sSL https://install.python-poetry.org | python3 -
- poetry config virtualenvs.create false
- poetry install
- printenv
- pytest
- name: build
image: plugins/kaniko
settings:
registry: git.psynet.su
username: genesis
password:
from_secret: registry_password
repo: git.psynet.su/genesis/python-hvac
tags:
- latest
- ${DRONE_COMMIT}
- ${DRONE_COMMIT_BRANCH}
---
kind: signature
hmac: 8e5103c096391ef7821044e9462a49b5de492fe194e95cd28b93c59b741e2244
...