#20 Pipelines merged. Deploy pipeline commented for now. Trying to check only changed code.
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/pr Build is failing Details

This commit is contained in:
Alexey Skobkin 2022-05-31 01:03:32 +03:00
parent 13bf132864
commit 00df13beab
1 changed files with 27 additions and 29 deletions

View File

@ -3,29 +3,27 @@
kind: pipeline
type: docker
name: build
name: app-check
steps:
- name: build-app
image: 'python:3.10-alpine'
- name: build-deps
image: 'python:3-alpine'
commands:
- python -m venv .venv
- source ./.venv/bin/activate
- pip install -r requirements.txt
---
kind: pipeline
type: docker
name: code-audit
steps:
when:
event:
include:
- pull_request
- name: pylama
image: 'python:3.10-alpine'
image: 'python:3-alpine'
commands:
- python -m venv .venv
- apk update > /dev/null && apk add git > /dev/null
#- python -m venv .venv
- source ./.venv/bin/activate
- 'pip install pylama pylama\[all\] > /dev/null'
- pylama
- 'git --no-pager diff --name-only origin/${DRONE_TARGET_BRANCH} | xargs pylama'
when:
event:
include:
@ -34,19 +32,19 @@ steps:
exclude: master
---
kind: pipeline
type: docker
name: deploy
steps:
- name: deploy
image: alpine
commands:
- 'echo "TODO: implement deploy"'
when:
branch: master
depends_on:
- build
- code-audit
#---
#kind: pipeline
#type: docker
#name: deploy
#
#steps:
# - name: deploy
# image: alpine
# commands:
# - 'echo "TODO: implement deploy"'
# when:
# branch: master
#
#depends_on:
# - build
# - code-audit