-
Notifications
You must be signed in to change notification settings - Fork 0
/
.drone.yml
101 lines (86 loc) · 1.67 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
100
101
kind: secret
name: token_docker
get:
path: secrets
name: token_docker_dronestock
---
kind: secret
name: password_ccr
get:
path: secrets
name: password_ccr
---
kind: secret
name: token_github
get:
path: secrets
name: token_github_storezhang
---
kind: secret
name: feishu_id
get:
path: secrets
name: feishu_id
---
kind: secret
name: feishu_secret
get:
path: secrets
name: feishu_secret
---
kind: pipeline
type: docker
name: Protobuf插件
clone:
disable: true
steps:
- name: 取码
image: ccr.ccs.tencentyun.com/dronestock/git
- name: 编译
image: ccr.ccs.tencentyun.com/pangum/drone
volumes:
- name: go
path: /var/lib/go
settings:
output:
name: protobuf
- name: 发布
image: ccr.ccs.tencentyun.com/dronestock/docker
privileged: true
volumes:
- name: docker
path: /var/lib/docker
environment:
PASSWORD_DOCKER:
from_secret: token_docker
PASSWORD_CCR:
from_secret: password_ccr
settings:
repository: dronestock/protobuf
tag: 0.0.$${DRONE_BUILD_NUMBER}
registries:
- username: dronestock
password: $${PASSWORD_DOCKER}
- hostname: ccr.ccs.tencentyun.com
username: "160290688"
password: $${PASSWORD_CCR}
required: true
- name: 通知
image: ccr.ccs.tencentyun.com/dronestock/feishu
pull: always
when:
status:
- success
- failure
settings:
id:
from_secret: feishu_id
secret:
from_secret: feishu_secret
volumes:
- name: go
host:
path: /var/lib/cache/go
- name: docker
host:
path: /var/lib/cache/docker