2020-03-09 16:50:22 +01:00
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: default
|
|
|
|
|
|
|
|
steps:
|
2020-05-08 19:25:42 +02:00
|
|
|
- name: restore-cache-with-filesystem
|
|
|
|
image: meltwater/drone-cache
|
|
|
|
settings:
|
|
|
|
backend: "filesystem"
|
|
|
|
restore: true
|
|
|
|
cache_key: "{{ .Repo.Name }}"
|
|
|
|
archive_format: "gzip"
|
|
|
|
filesystem_cache_root: "/tmp/cache"
|
|
|
|
mount:
|
|
|
|
- '.pipcache'
|
|
|
|
volumes:
|
|
|
|
- name: cache
|
|
|
|
path: /tmp/cache
|
|
|
|
|
2020-03-09 16:50:22 +01:00
|
|
|
- name: static_analysis
|
2020-03-30 19:33:09 +02:00
|
|
|
image: python:3.8
|
2020-03-09 16:50:22 +01:00
|
|
|
commands:
|
2020-05-08 19:25:42 +02:00
|
|
|
- pip3 install --cache-dir='./.pipcache' pylint bandit mccabe
|
|
|
|
- pip3 install --cache-dir='./.pipcache' -r requirements.txt
|
2020-03-09 16:50:22 +01:00
|
|
|
- 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
|
2020-04-29 12:31:33 +02:00
|
|
|
environment:
|
|
|
|
PRODUCER_REDIS: cache
|
2020-03-30 19:33:09 +02:00
|
|
|
commands:
|
|
|
|
- pip3 install -r requirements.txt
|
|
|
|
- pytest test.py
|
|
|
|
|
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-05-08 19:25:42 +02:00
|
|
|
- name: rebuild-cache-with-filesystem
|
|
|
|
image: meltwater/drone-cache
|
|
|
|
pull: true
|
|
|
|
settings:
|
|
|
|
backend: "filesystem"
|
|
|
|
rebuild: true
|
|
|
|
cache_key: "{{ .Repo.Name }}"
|
|
|
|
archive_format: "gzip"
|
|
|
|
filesystem_cache_root: "/tmp/cache"
|
|
|
|
mount:
|
|
|
|
- '.pipcache'
|
|
|
|
volumes:
|
|
|
|
- name: cache
|
|
|
|
path: /tmp/cache
|
|
|
|
|
2020-04-08 16:01:01 +02:00
|
|
|
- name: build_docs
|
|
|
|
image: docker:stable-dind
|
|
|
|
volumes:
|
|
|
|
- name: dockersock
|
|
|
|
path: /var/run
|
|
|
|
environment:
|
|
|
|
DOCKER_USERNAME:
|
|
|
|
from_secret: DOCKER_USERNAME
|
|
|
|
DOCKER_PASSWORD:
|
|
|
|
from_secret: DOCKER_PASSWORD
|
|
|
|
commands:
|
|
|
|
- cd docs
|
2020-04-28 20:53:51 +02:00
|
|
|
- echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin registry.kmlabz.com
|
|
|
|
- docker build -t="registry.kmlabz.com/goldenpogacsa/producer-docs" .
|
|
|
|
- docker build -t="registry.kmlabz.com/goldenpogacsa/producer-docs:$DRONE_BUILD_NUMBER" .
|
|
|
|
- docker push "registry.kmlabz.com/goldenpogacsa/producer-docs"
|
|
|
|
- docker push "registry.kmlabz.com/goldenpogacsa/producer-docs:$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 ]
|
|
|
|
|
2020-03-09 16:50:22 +01:00
|
|
|
services:
|
|
|
|
- name: docker
|
|
|
|
image: docker:stable-dind
|
|
|
|
privileged: true
|
|
|
|
volumes:
|
|
|
|
- name: dockersock
|
|
|
|
path: /var/run
|
2020-04-29 12:31:33 +02:00
|
|
|
- name: cache
|
|
|
|
image: redis
|
2020-03-09 16:50:22 +01:00
|
|
|
|
|
|
|
volumes:
|
|
|
|
- name: dockersock
|
|
|
|
temp: {}
|
2020-05-08 19:32:13 +02:00
|
|
|
- name: cache
|
|
|
|
temp: {}
|