forked from appleboy/gorush
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.drone.yml
191 lines (170 loc) · 3.62 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
workspace:
base: /go/src
path: github.com/appleboy/gorush
clone:
git:
image: plugins/git
depth: 50
tags: true
pipeline:
deps:
image: golang:1.11
pull: true
group: golang
commands:
- make deps
- make embedmd
lint:
image: golang:1.11
pull: true
group: golang
commands:
- make vet
- make lint
vendor:
image: golang:1.11
pull: true
group: golang
commands:
- make test-vendor
- make misspell-check
- make fmt-check
go_module_build_linux_amd64:
image: golang:1.11
pull: true
group: golang
environment:
- GO111MODULE=on
commands:
- make module
- make build_linux_amd64
build_linux_amd64:
image: golang:1.11
pull: true
group: golang
commands:
- make build_linux_amd64
build_linux_i386:
image: golang:1.11
pull: true
group: golang
commands:
- make build_linux_i386
build_linux_arm64:
image: golang:1.11
pull: true
group: golang
commands:
- make build_linux_arm64
build_linux_arm:
image: golang:1.11
pull: true
group: golang
commands:
- make build_linux_arm
# coverage:
# image: golang:1.11
# pull: true
# group: golang
# secrets: [ android_test_token, android_api_key ]
# commands:
# - make unit-test-coverage
# when:
# event: [ push, pull_request ]
# generate-coverage:
# image: golang:1.11
# pull: true
# commands:
# - make coverage
# when:
# event: [ push, pull_request ]
# codecov:
# image: robertstettner/drone-codecov
# secrets: [ codecov_token ]
# files:
# - coverage.all
# when:
# event: [ push, pull_request ]
release:
image: golang:1.11
pull: true
commands:
- make release
when:
event: [ tag ]
publish_linux_amd64:
image: plugins/docker
group: release
pull: true
secrets: [ docker_username, docker_password ]
default_tags: true
repo: ${DRONE_REPO}
when:
event: [ push, tag ]
local: false
publish_linux_alpine:
image: plugins/docker
group: release
pull: true
dockerfile: Dockerfile.alpine
secrets: [ docker_username, docker_password ]
default_tags: true
default_suffix: alpine
repo: ${DRONE_REPO}
when:
event: [ push, tag ]
local: false
publish_linux_i386:
image: plugins/docker
group: release
pull: true
dockerfile: Dockerfile.i386
secrets: [ docker_username, docker_password ]
default_tags: true
default_suffix: i386
repo: ${DRONE_REPO}
when:
event: [ push, tag ]
local: false
publish_linux_arm:
image: plugins/docker
group: release
pull: true
dockerfile: Dockerfile.arm
secrets: [ docker_username, docker_password ]
default_tags: true
default_suffix: arm
repo: ${DRONE_REPO}
when:
event: [ push, tag ]
local: false
publish_linux_arm64:
image: plugins/docker
group: release
pull: true
dockerfile: Dockerfile.arm64
secrets: [ docker_username, docker_password ]
default_tags: true
default_suffix: arm64
repo: ${DRONE_REPO}
when:
event: [ push, tag ]
local: false
release_tag:
image: plugins/github-release
secrets: [ github_release_api_key ]
group: release
files:
- dist/release/*
when:
event: [ tag ]
local: false
discord:
image: appleboy/drone-discord
pull: true
secrets: [ discord_webhook_id, discord_webhook_token ]
when:
status: [ success, failure ]
services:
redis:
image: redis:alpine