This repository has been archived on 2020-09-24. You can view files and clone it, but cannot push or open issues or pull requests.
producer-endpoint/.drone.yml

94 lines
2.2 KiB
YAML
Raw Normal View History

2020-04-17 16:35:55 +02:00
kind: pipeline
type: docker
name: default
steps:
2020-05-08 19:49:13 +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-04-17 16:35:55 +02:00
- name: static_analysis
image: python:3.8
commands:
2020-05-08 19:49:13 +02:00
- pip3 install --cache-dir='./.pipcache' pylint bandit mccabe
- pip3 install --cache-dir='./.pipcache' -r requirements.txt
2020-04-17 16:35:55 +02: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-05-08 22:17:09 +02:00
- name: unit_test
image: python:3.8
environment:
REDIS_URL: "redis://cache"
commands:
2020-05-08 22:19:21 +02:00
- pip3 install --cache-dir='./.pipcache' -r requirements.txt
2020-05-08 22:17:09 +02:00
- pytest test.py
2020-05-14 21:22:41 +02:00
- name: coverage
image: python:3.8
environment:
2020-05-14 21:24:08 +02:00
REDIS_URL: "redis://cache"
2020-05-14 21:22:41 +02:00
commands:
- pip3 install --cache-dir='./.pipcache' -r requirements.txt
- pip3 install --cache-dir='./.pipcache' coverage pytest
- coverage run -m pytest test.py
- coverage report -m
2020-05-08 22:17:09 +02:00
2020-05-08 19:49:13 +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-28 19:27:51 +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-17 16:38:34 +02:00
2020-04-28 19:31:42 +02: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-05-08 19:49:13 +02:00
2020-05-08 22:17:09 +02:00
services:
- name: cache
image: redis
2020-05-08 19:49:13 +02:00
volumes:
- name: cache
2020-05-08 22:20:34 +02:00
host:
path: "/tmp/cache"