forked from databendlabs/databend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbump_version.js
More file actions
279 lines (258 loc) · 8.19 KB
/
Copy pathbump_version.js
File metadata and controls
279 lines (258 loc) · 8.19 KB
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
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
module.exports = async ({ github, context, core }) => {
const knownEvents = ["schedule", "workflow_dispatch"];
if (!knownEvents.includes(context.eventName)) {
core.setFailed(`Triggerd by unknown event: ${context.eventName}`);
return;
}
const { TYPE, TAG, SHA } = process.env;
if (!TYPE) {
core.setOutput("type", "nightly");
} else {
core.setOutput("type", TYPE);
}
const RE_TAG_STABLE = /^v(\d+)\.(\d+)\.(\d+)$/;
const RE_TAG_NIGHTLY = /^v(\d+)\.(\d+)\.(\d+)-nightly$/;
const RE_TAG_PATCH = /^v(\d+)\.(\d+)\.(\d+)-p(\d+)$/;
async function getPreviousNightlyRelease(github, context) {
const releases = await github.rest.repos.listReleases({
owner: context.repo.owner,
repo: context.repo.repo,
});
for (const release of releases.data) {
const ret = RE_TAG_NIGHTLY.exec(release.tag_name);
if (ret) {
return release.tag_name;
}
}
}
function getNextNightlyRelease(previous) {
const nightly = RE_TAG_NIGHTLY.exec(previous);
if (nightly) {
const major = nightly[1];
const minor = nightly[2];
const patch = parseInt(nightly[3]) + 1;
return `v${major}.${minor}.${patch}-nightly`;
}
}
async function getPreviousStableRelease(github, context) {
let page = 1;
while (true) {
const releases = await github.rest.repos.listReleases({
owner: context.repo.owner,
repo: context.repo.repo,
page,
});
if (releases.data.length === 0) {
break;
}
page++;
for (const release of releases.data) {
const ret = RE_TAG_STABLE.exec(release.tag_name);
if (ret) {
return release.tag_name;
}
}
}
}
function getNextStableRelease() {
const nightly = RE_TAG_NIGHTLY.exec(TAG);
if (nightly) {
const major = nightly[1];
const minor = nightly[2];
const patch = nightly[3];
return `v${major}.${minor}.${patch}`;
}
}
async function getPreviousPatchRelease(github, context) {
let page = 1;
while (true) {
const releases = await github.rest.repos.listReleases({
owner: context.repo.owner,
repo: context.repo.repo,
page,
});
if (releases.data.length === 0) {
break;
}
page++;
for (const release of releases.data) {
if (!release.tag_name.startsWith(TAG)) {
continue;
}
if (release.tag_name === TAG) {
// no previous patch release, use the previous stable release
return release.tag_name;
}
const ret = RE_TAG_PATCH.exec(release.tag_name);
if (!ret) {
core.warning(`Ignore invalid patch release ${release.tag_name}`);
continue;
}
return release.tag_name;
}
}
}
function getNextPatchRelease(previous) {
const stable = RE_TAG_STABLE.exec(previous);
if (stable) {
const major = stable[1];
const minor = stable[2];
const patch = stable[3];
return `v${major}.${minor}.${patch}-p1`;
}
const version = RE_TAG_PATCH.exec(previous);
if (version) {
const major = version[1];
const minor = version[2];
const patch = version[3];
const pv = parseInt(version[4]) + 1;
return `v${major}.${minor}.${patch}-p${pv}`;
}
}
// Determine the SHA to use
switch (TYPE) {
case "":
case "nightly": {
if (SHA) {
core.setFailed("Custom SHA is not supported for nightly release, please use 'custom' type instead");
return;
}
core.setOutput("sha", context.sha);
core.info(`Nightly release triggered by (${context.sha})`);
const previous = await getPreviousNightlyRelease(github, context);
if (!previous) {
core.setFailed(`No previous nightly release found, ignoring`);
return;
}
core.setOutput("previous", previous);
core.info(`Nightly release with previous release: ${previous}`);
if (TAG) {
core.setOutput("tag", TAG);
core.info(`Release create manually with tag ${TAG}`);
return;
}
const nextTag = getNextNightlyRelease(previous);
if (!nextTag) {
core.setFailed(`No next nightly release from ${previous}`);
return;
}
core.setOutput("tag", nextTag);
core.info(`Release create new nightly ${nextTag}`);
return;
}
case "stable": {
if (SHA) {
core.setFailed("Custom SHA is not supported for stable release, please use 'custom' type instead");
return;
}
if (!TAG) {
core.setFailed("Stable release must be triggered with a nightly tag");
return;
}
core.setOutput("sha", context.sha);
core.info(`Stable release triggered by ${TAG} (${context.sha})`);
const nextTag = getNextStableRelease();
if (!nextTag) {
core.setFailed(`No stable release from ${TAG}`);
return;
}
core.setOutput("tag", nextTag);
core.info(`Stable release ${nextTag} from ${TAG}`);
const previous = await getPreviousStableRelease(github, context);
if (!previous) {
core.setFailed(`No previous stable release found, ignoring`);
return;
}
core.setOutput("previous", previous);
core.info(`Stable release with previous release: ${previous}`);
return;
}
case "patch": {
if (SHA) {
core.setFailed("Custom SHA is not supported for patch release, please use 'custom' type instead");
return;
}
if (!TAG) {
core.setFailed("Patch release must be triggered with a stable tag");
return;
}
core.info(`Patch release triggered by ${TAG}`);
const result = RE_TAG_STABLE.exec(TAG);
if (!result) {
core.setFailed(`The tag ${TAG} is invalid, ignoring`);
return;
}
const branch = await github.rest.repos.getBranch({
owner: context.repo.owner,
repo: context.repo.repo,
branch: `backport/${TAG}`,
});
const patchSha = branch.data.commit.sha;
core.setOutput("sha", patchSha);
core.info(`Patch release triggered by ${TAG} (${patchSha})`);
const previous = await getPreviousPatchRelease(github, context);
if (!previous) {
core.setFailed(`No previous patch release found, ignoring`);
return;
}
core.setOutput("previous", previous);
core.info(`Patch release with previous release: ${previous}`);
const nextTag = getNextPatchRelease(previous);
if (!nextTag) {
core.setFailed(`No next patch release from ${previous}`);
return;
}
core.setOutput("tag", nextTag);
core.info(`Patch release ${nextTag} from ${previous}`);
return;
}
case "custom": {
if (!TAG) {
core.setFailed("Custom release must be triggered with a tag");
return;
}
if (!SHA) {
core.setFailed("Custom release must be triggered with a SHA");
return;
}
core.setOutput("tag", TAG);
core.setOutput("sha", SHA);
core.info(`Custom release ${TAG} (${SHA})`);
// Best-effort: try to find a previous release for release notes
const RE_TAG_CUSTOM = /^(v\d+\.\d+\.\d+)-.+$/;
const match = RE_TAG_CUSTOM.exec(TAG);
if (match) {
const baseVersion = match[1];
let found = false;
let page = 1;
while (!found) {
const releases = await github.rest.repos.listReleases({
owner: context.repo.owner,
repo: context.repo.repo,
page,
});
if (releases.data.length === 0) {
break;
}
page++;
for (const release of releases.data) {
if (release.tag_name === baseVersion || release.tag_name === `${baseVersion}-nightly`) {
core.setOutput("previous", release.tag_name);
core.info(`Custom release with previous release: ${release.tag_name}`);
found = true;
break;
}
}
}
if (!found) {
core.info(`No previous release found for base version ${baseVersion}, skipping release notes`);
}
}
return;
}
default: {
core.setFailed(`Unknown release type: ${TYPE}`);
return;
}
}
};