-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.drone.star
247 lines (218 loc) · 6.17 KB
/
.drone.star
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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
OC_CI_NODEJS = "owncloudci/nodejs:18"
OC_CI_BAZEL_BUILDIFIER = "owncloudci/bazel-buildifier"
OC_CI_ALPINE = "owncloudci/alpine:latest"
PLUGINS_GITHUB_RELEASE = "plugins/github-release:1"
def main(ctx):
before = beforePipelines(ctx)
stages = pipelinesDependsOn(stagePipelines(ctx), before)
if (stages == False):
print("Errors detected. Review messages above.")
return []
after = pipelinesDependsOn(afterPipelines(ctx), stages)
pipelines = before + stages + after
return pipelines
def determineReleaseVersion(ctx):
if ctx.build.event != "tag":
return None
return ctx.build.ref.replace("refs/tags/v", "")
def installPnpm():
return [{
"name": "pnpm-install",
"image": OC_CI_NODEJS,
"commands": [
'npm install --silent --global --force "$(jq -r ".packageManager" < package.json)"',
"pnpm config set store-dir ./.pnpm-store",
"pnpm install",
],
}]
def webLint():
return [{
"name": "lint",
"image": OC_CI_NODEJS,
"depends_on": ["pnpm-install"],
"commands": [
"pnpm lint",
],
}]
def webTypecheck():
return [{
"name": "typecheck",
"image": OC_CI_NODEJS,
"depends_on": ["pnpm-install"],
"commands": [
"pnpm check:types",
],
}]
def beforePipelines(ctx):
return checkStarlark()
def stagePipelines(ctx):
return checks(ctx) + unitTests(ctx)
def afterPipelines(ctx):
return appBuilds(ctx)
def pipelineDependsOn(pipeline, dependant_pipelines):
if "depends_on" in pipeline.keys():
pipeline["depends_on"] = pipeline["depends_on"] + getPipelineNames(dependant_pipelines)
else:
pipeline["depends_on"] = getPipelineNames(dependant_pipelines)
return pipeline
def pipelinesDependsOn(pipelines, dependant_pipelines):
pipes = []
for pipeline in pipelines:
pipes.append(pipelineDependsOn(pipeline, dependant_pipelines))
return pipes
def getPipelineNames(pipelines = []):
"""getPipelineNames returns names of pipelines as a string array
Args:
pipelines: array of drone pipelines
Returns:
names of the given pipelines as string array
"""
names = []
for pipeline in pipelines:
names.append(pipeline["name"])
return names
def checkStarlark():
return [{
"kind": "pipeline",
"type": "docker",
"name": "check-starlark",
"steps": [
{
"name": "format-check-starlark",
"image": OC_CI_BAZEL_BUILDIFIER,
"commands": [
"buildifier --mode=check .drone.star",
],
},
{
"name": "show-diff",
"image": OC_CI_BAZEL_BUILDIFIER,
"commands": [
"buildifier --mode=fix .drone.star",
"git diff",
],
"when": {
"status": [
"failure",
],
},
},
],
"trigger": {
"ref": [
"refs/pull/**",
],
},
}]
def checks(ctx):
return [{
"kind": "pipeline",
"type": "docker",
"name": "lint+types",
"steps": installPnpm() +
webLint() +
webTypecheck(),
"trigger": {
"ref": [
"refs/heads/main",
"refs/heads/stable-*",
"refs/tags/**",
"refs/pull/**",
],
},
}]
def unitTests(ctx):
unit_test_steps = [{
"name": "unit-tests-app",
"image": OC_CI_NODEJS,
"depends_on": ["pnpm-install"],
"commands": [
"pnpm test:unit",
],
}]
return [{
"kind": "pipeline",
"type": "docker",
"name": "unit-tests",
"steps": installPnpm() + unit_test_steps,
"trigger": {
"ref": [
"refs/heads/main",
"refs/heads/stable-*",
"refs/tags/**",
"refs/pull/**",
],
},
}]
def publishSteps(ctx):
version = determineReleaseVersion(ctx)
if version == None:
return []
return [{
"name": "publish",
"image": PLUGINS_GITHUB_RELEASE,
"depends_on": ["package"],
"settings": {
"api_key": {
"from_secret": "github_token",
},
"files": [
"assets/skeleton-%s.zip" % version,
],
"checksum": [
"md5",
"sha256",
],
"title": "skeleton %s" % version,
"note": ".release_note",
"overwrite": True,
},
"when": {
"ref": [
"refs/tags/**",
],
},
}]
def appBuilds(ctx):
version = determineReleaseVersion(ctx)
if version == None:
return []
app_build_steps = [{
"name": "build",
"image": OC_CI_NODEJS,
"depends_on": ["pnpm-install"],
"commands": [
"pnpm build",
],
}, {
"name": "package",
"image": OC_CI_ALPINE,
"depends_on": ["build"],
"commands": [
"apk add zip",
"mkdir -p assets/skeleton/",
"cp -R .vscode dev public src tests assets/skeleton/",
"cp .editorconfig .eslintrc.json .gitignore .npmrc .prettierrc.json docker-compose.yml LICENSE package.json pnpm-lock.yaml README.md tsconfig.json vite.config.ts assets/skeleton/",
"cd assets/",
"zip -r skeleton-%s.zip skeleton/" % version,
],
"when": {
"ref": [
"refs/tags/**",
],
},
}]
return [{
"kind": "pipeline",
"type": "docker",
"name": "build",
"steps": installPnpm() + app_build_steps + publishSteps(ctx),
"trigger": {
"ref": [
"refs/heads/main",
"refs/heads/stable-*",
"refs/tags/**",
"refs/pull/**",
],
},
}]