4
0
Fork 0

use different caching method

This commit is contained in:
Torma Kristóf 2020-05-06 13:14:26 +02:00
parent 2770e0921d
commit 39af3b560b
Signed by: tormakris
GPG Key ID: DC83C4F2C41B1047
2 changed files with 29 additions and 23 deletions

View File

@ -3,35 +3,42 @@ type: docker
name: default
steps:
- name: restore-cache
image: drillster/drone-volume-cache
volumes:
- name: cache
path: /cache
settings:
restore: true
mount:
- /root/.cache/pip
- 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
- name: static_analysis
image: "python:3.8"
commands:
- pip3 install pylint bandit mccabe
- pip3 install -r requirements.txt
- pip3 install --cache-dir='./.pipcache' pylint bandit mccabe
- pip3 install --cache-dir='./.pipcache' cython numpy==1.18.2
- pip3 install --cache-dir='./.pipcache' -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
- name: rebuild-cache
image: drillster/drone-volume-cache
volumes:
- name: cache
path: /cache
settings:
rebuild: true
mount:
- /root/.cache/pip
- name: rebuild-cache-with-filesystem
image: meltwater/drone-cache:dev
pull: true
settings:
backend: "filesystem"
rebuild: true
cache_key: "{{ .Repo.Name }}"
archive_format: "gzip"
filesystem_cache_root: "/tmp/cache"
mount:
- '.pipcache'
- name: kaniko
image: banzaicloud/drone-kaniko
@ -56,5 +63,4 @@ steps:
volumes:
- name: cache
host:
path: /tmp/cache
temp: {}

View File

@ -7,6 +7,6 @@ ENV PIP_NO_CACHE_DIR=true
ENV TZ Europe/Budapest
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
RUN pip3 install -r requirements.txt
RUN pip3 install cython numpy==1.18.2 && pip3 install -r requirements.txt
ENTRYPOINT ["python3","main.py"]