drone build
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Torma Kristóf 2020-01-23 14:27:20 +01:00
parent 4833a54df1
commit 5f4ff5e387
Signed by: tormakris
GPG Key ID: DC83C4F2C41B1047
1 changed files with 40 additions and 0 deletions

40
.drone.yml Normal file
View File

@ -0,0 +1,40 @@
kind: pipeline
type: docker
name: default
steps:
- name: static_analysis
image: python:3
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 .
- name: build
image: docker:stable-dind
volumes:
- name: dockersock
path: /var/run
environment:
DOCKER_USERNAME:
from_secret: DOCKER_USERNAME
DOCKER_PASSWORD:
from_secret: DOCKER_PASSWORD
commands:
- echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin registry.kmlabz.com
- for dir in $PWD/*/; do dir=${dir%*/}; cd $dir; docker build -t=registry.kmlabz.com/$DOCKER_USERNAME/${dir##*/} .; docker push registry.kmlabz.com/$DOCKER_USERNAME/${dir##*/}; cd ..; done
services:
- name: docker
image: docker:stable-dind
privileged: true
volumes:
- name: dockersock
path: /var/run
volumes:
- name: dockersock
temp: {}