knative-report-results/.drone.yml
Torma Kristóf 497244b7a2
Some checks failed
continuous-integration/drone/push Build is failing
start docker daemon
2020-01-23 13:58:26 +01:00

28 lines
1008 B
YAML

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
environment:
DOCKER_USERNAME:
from_secret: DOCKER_USERNAME
DOCKER_PASSWORD:
from_secret: DOCKER_PASSWORD
commands:
- dockerd &
- echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin registry.kmlabz.com
- docker build -t="registry.kmlabz.com/$DRONE_REPO:$DRONE_BUILD_NUMBER" . && docker push "registry.kmlabz.com/$DRONE_REPO:$DRONE_BUILD_NUMBER"
- docker build -t="registry.kmlabz.com/$DRONE_REPO" . && docker push "registry.kmlabz.com/$DRONE_REPO"