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