2020-03-09 16:50:22 +01:00
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: default
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: static_analysis
|
2020-03-30 19:33:09 +02:00
|
|
|
image: python:3.8
|
2020-03-09 16:50:22 +01:00
|
|
|
commands:
|
|
|
|
- pip3 install pylint bandit mccabe
|
|
|
|
- pip3 install -r requirements.txt
|
|
|
|
- find . -name "*.py" -exec python3 -m py_compile '{}' \;
|
|
|
|
- find . -name "*.py" -exec pylint '{}' + || if [ $? -eq 1 ]; then echo "you fail"; fi
|
|
|
|
- find . -name "*.py" -exec python3 -m mccabe --min 3 '{}' + || if [ $? -eq 1 ]; then echo "you fail"; fi
|
|
|
|
- bandit -r . + || if [ $? -eq 1 ]; then echo "you fail"; fi
|
|
|
|
|
2020-03-30 19:33:09 +02:00
|
|
|
- name: unit_test
|
|
|
|
image: python:3.8
|
|
|
|
commands:
|
|
|
|
- pip3 install -r requirements.txt
|
2020-04-21 22:46:49 +02:00
|
|
|
- echo -e 'pytest test.py'
|
2020-03-30 19:33:09 +02:00
|
|
|
|
2020-04-28 19:37:04 +02:00
|
|
|
- name: build-app
|
|
|
|
image: banzaicloud/drone-kaniko
|
|
|
|
settings:
|
|
|
|
registry: registry.kmlabz.com
|
|
|
|
repo: goldenpogacsa/${DRONE_REPO_NAME}
|
|
|
|
username:
|
|
|
|
from_secret: DOCKER_USERNAME
|
|
|
|
password:
|
|
|
|
from_secret: DOCKER_PASSWORD
|
|
|
|
tags:
|
|
|
|
- latest
|
|
|
|
- ${DRONE_BUILD_NUMBER}
|
2020-04-07 17:56:38 +02:00
|
|
|
|
2020-04-08 16:01:01 +02:00
|
|
|
- name: make_docs
|
|
|
|
image: python:3.8
|
2020-04-07 17:56:38 +02:00
|
|
|
commands:
|
2020-04-08 21:07:54 +02:00
|
|
|
- pip3 install Sphinx sphinx_rtd_theme
|
2020-04-07 17:56:38 +02:00
|
|
|
- pip3 install -r requirements.txt
|
|
|
|
- cd docs
|
|
|
|
- make html
|
2020-03-09 16:50:22 +01:00
|
|
|
|
2020-04-28 19:37:04 +02:00
|
|
|
- name: build-docs
|
|
|
|
image: banzaicloud/drone-kaniko
|
|
|
|
settings:
|
|
|
|
registry: registry.kmlabz.com
|
2020-04-28 20:26:41 +02:00
|
|
|
context: ${PWD}/docs/
|
2020-04-28 19:37:04 +02:00
|
|
|
repo: goldenpogacsa/consumer-api-docs
|
|
|
|
username:
|
2020-04-08 16:01:01 +02:00
|
|
|
from_secret: DOCKER_USERNAME
|
2020-04-28 19:37:04 +02:00
|
|
|
password:
|
2020-04-08 16:01:01 +02:00
|
|
|
from_secret: DOCKER_PASSWORD
|
2020-04-28 19:37:04 +02:00
|
|
|
tags:
|
|
|
|
- latest
|
|
|
|
- ${DRONE_BUILD_NUMBER}
|
2020-04-08 16:01:01 +02:00
|
|
|
|
2020-03-27 18:46:33 +01:00
|
|
|
- name: slack
|
|
|
|
image: plugins/slack
|
|
|
|
settings:
|
|
|
|
webhook:
|
|
|
|
from_secret: slack_webhook
|
|
|
|
channel: alerts-ci
|
|
|
|
icon_url: https://cloudcdn.tormakristof.eu/static/drone.svg
|
|
|
|
when:
|
|
|
|
status: [ failure ]
|