Commit 57c4a7a8 authored by Wen Wei Li's avatar Wen Wei Li

add .drone.yml

parent a176ff3c
Pipeline #4808 canceled with stages
in 0 seconds
---
kind: pipeline
type: docker
name: deploy
steps:
# scan
- name: sast_scan
image: prlab/sast_scan
volumes:
- name: cache
path: /home/reports/
commands:
- python3 /usr/local/src/scan --type python,yaml,dockerfile,kubernetes --src ./src -o /home/reports
- name: code-analysis
image: prlab/drone-sonar
settings:
SONAR_HOST:
from_secret: sonar_host
SONAR_TOKEN:
from_secret: sonar_token
- name: scp
image: appleboy/drone-scp
volumes:
- name: cache
path: /home/reports/
settings:
host:
from_secret: ssh_host
username:
from_secret: ssh_username
password:
from_secret: ssh_password
port : 22
target: /home/oran/Downloads/drone_reports
source: /home/reports/
depends_on: ["sast_scan", "code-analysis"]
volumes:
- name: cache
temp: {}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment