-
Notifications
You must be signed in to change notification settings - Fork 740
/
.drone.yml
57 lines (54 loc) · 1.46 KB
/
.drone.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
kind: pipeline
name: default
platform:
os: linux
arch: amd64
steps:
- name: edelweiss_swc
image: mythx.azurecr.io/tools/edelweiss
environment:
IGNORE_FALSE_POSITIVES:
from_secret: IGNORE_FALSE_POSITIVES
IGNORE_REGRESSIONS:
from_secret: IGNORE_REGRESSIONS
AWS_DEFAULT_REGION:
from_secret: AWS_DEFAULT_REGION
AWS_ACCESS_KEY_ID:
from_secret: AWS_ACCESS_KEY_ID
AWS_SECRET_ACCESS_KEY:
from_secret: AWS_SECRET_ACCESS_KEY
MONGO_URL:
from_secret: MONGO_URL
commands:
# CIRCLE_* env vars is used by edelweiss cli to generate
# the reports storage directory structure
- export CIRCLE_BUILD_NUM=$DRONE_BUILD_NUMBER
- export CIRCLE_BUILD_URL=$DRONE_BUILD_LINK
- export CIRCLE_BRANCH=$DRONE_BRANCH
- export CIRCLE_SHA1=$DRONE_COMMIT_SHA
# install pip module from current dir
- pip3 install $(pwd)
# update SWC-registry
- cd /edelweiss
- git submodule update --init --recursive
- git submodule update --remote --recursive
# run edelewiss tests
# Temporarily stop Edelweiss drone
#- edelweiss-cli
# -p mythril
# --timeout 90
# --output-dir $(pwd)
# --s3
# --dynamodb
# --circle-ci CircleCI/mythril.csv
# --ignore-false-positives $IGNORE_FALSE_POSITIVES
# --ignore-regressions $IGNORE_REGRESSIONS
when:
branch:
- develop
- master
event:
- push
- tag
image_pull_secrets:
- DOCKER_CONFIG_JSON