-
Notifications
You must be signed in to change notification settings - Fork 0
99 lines (87 loc) · 2.29 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
---
kind: pipeline
type: docker
name: go-1-18
steps:
- name: test
image: golang:1.18
commands:
- go test ./...
- go build -v ./cmd/localrelay
- name: goreleaser-validate
image: goreleaser/goreleaser
commands:
- goreleaser check
- name: run gitleaks
image: plugins/gitleaks
settings:
path: .
- name: build-failed-notification
image: curlimages/curl:8.00.1
environment:
notify:
from_secret: notification_webhook
when:
status:
- failure
commands:
- "curl -v $notify -F 'title=Build Failed: ${DRONE_REPO}' -F $'message=[Build Failed] ${DRONE_REPO}\n[COMMIT] ${DRONE_COMMIT}\n[BRANCH] ${DRONE_BRANCH}\n'"
---
kind: pipeline
type: docker
name: go-1-19
steps:
- name: test
image: golang:1.19
commands:
- go test ./...
- go build -v ./cmd/localrelay
- name: build-failed-notification
image: curlimages/curl:8.00.1
environment:
notify:
from_secret: notification_webhook
when:
status:
- failure
commands:
- "curl -v $notify -F 'title=Build Failed: ${DRONE_REPO}' -F $'message=[Build Failed] ${DRONE_REPO}\n[COMMIT] ${DRONE_COMMIT}\n[BRANCH] ${DRONE_BRANCH}\n'"
---
kind: pipeline
type: docker
name: go-1-17
steps:
- name: test
image: golang:1.17
commands:
- go test ./...
- go build -v ./cmd/localrelay
- name: build-failed-notification
image: curlimages/curl:8.00.1
environment:
notify:
from_secret: notification_webhook
when:
status:
- failure
commands:
- "curl -v $notify -F 'title=Build Failed: ${DRONE_REPO}' -F $'message=[Build Failed] ${DRONE_REPO}\n[COMMIT] ${DRONE_COMMIT}\n[BRANCH] ${DRONE_BRANCH}\n'"
---
kind: pipeline
type: docker
name: osv-dependency-scan
steps:
- name: osv-vuln-dep-scanner
image: ghcr.io/google/osv-scanner:latest
commands:
- /osv-scanner --config=./.github/osv.toml -r ./
- name: build-failed-notification
image: curlimages/curl:8.00.1
environment:
notify:
from_secret: notification_webhook
when:
status:
- failure
commands:
- "curl -v $notify -F 'title=Vulnerability In ${DRONE_REPO}' -F $'message=[Build Failed] ${DRONE_REPO}\n[COMMIT] ${DRONE_COMMIT}\n[BRANCH] ${DRONE_BRANCH}'"