-
Notifications
You must be signed in to change notification settings - Fork 148
/
Copy pathupdate-quarkus-platform.js
137 lines (119 loc) · 4.18 KB
/
update-quarkus-platform.js
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
const xml2js = require('xml2js');
const {Octokit} = require("octokit");
const {readFile,writeFile} = require('fs/promises');
const {spawn} = require('node:child_process');
const cePomPath = "templates/quarkus/cloudevents/pom.xml"
const httpPomPath = "templates/quarkus/http/pom.xml"
const octokit = new Octokit({auth: process.env.GITHUB_TOKEN});
const [owner, repo] = process.env.GITHUB_REPOSITORY.split('/')
const getLatestPlatform = async () => {
const data = await (await fetch("https://code.quarkus.io/api/platforms")).json()
return data.platforms[0].streams[0].releases[0].quarkusCoreVersion
}
const prExists = async (pred) => {
let page = 1
const perPage = 10;
while (true) {
const resp = await octokit.rest.pulls.list({
owner: owner,
repo: repo,
state: 'open',
per_page: perPage,
page: page
})
for (const e of resp.data) {
if (pred(e)) {
return true
}
}
if (resp.data.length < perPage) {
return false
}
page++
}
}
const parseXML = (text) => new Promise((resolve, reject) => {
xml2js.parseString(text, {}, (err, res) => {
if (err) {
reject(err)
}
resolve(res)
})
})
const platformFromPom = async (pomPath) => {
const pomData = await readFile(pomPath, {encoding: 'utf8'});
const pom = await parseXML(pomData)
return pom.project.properties[0]['quarkus.platform.version'][0]
}
const prepareBranch = async (branchName, prTitle) => {
const script = `git config user.email "automation@knative.team" && \\
git config user.name "Knative Automation" && \\
git checkout -b "${branchName}" && \\
make generate/zz_filesystem_generated.go && \\
git add "${cePomPath}" "${httpPomPath}" generate/zz_filesystem_generated.go && \\
git commit -m "${prTitle}" && \\
git push --set-upstream origin "${branchName}"
`
const subproc = spawn("sh", ["-c", script], {stdio: ['inherit', 'inherit', 'inherit']})
return new Promise((resolve, reject) => {
subproc.on('exit', code => {
if (code === 0) {
resolve()
return
}
reject(new Error("cannot prepare branch: non-zero exit code"))
})
})
}
const updatePlatformInPom = async (pomPath, newPlatform) => {
const pomData = await readFile(pomPath, {encoding: 'utf8'});
const newPomData = pomData.replace(new RegExp('<quarkus.platform.version>[\\w.]+</quarkus.platform.version>', 'i'),
`<quarkus.platform.version>${newPlatform}</quarkus.platform.version>`)
await writeFile(pomPath, newPomData)
}
const smokeTest = () => {
const subproc = spawn("make", ["test-quarkus"], {stdio: ['inherit', 'inherit', 'inherit']})
return new Promise((resolve, reject) => {
subproc.on('exit', code => {
if (code === 0) {
resolve()
return
}
reject(new Error("smoke test failed: non-zero exit code"))
})
})
}
const main = async () => {
const latestPlatform = await getLatestPlatform()
const prTitle = `chore: update Quarkus platform version to ${latestPlatform}`
const branchName = `update-quarkus-platform-${latestPlatform}`
const cePlatform = await platformFromPom(cePomPath)
const httpPlatform = await platformFromPom(httpPomPath)
if (cePlatform === latestPlatform && httpPlatform === latestPlatform) {
console.log("Quarkus platform is up-to-date!")
return
}
if (await prExists(({title}) => title === prTitle)) {
console.log("The PR already exists!")
return
}
await updatePlatformInPom(cePomPath, latestPlatform)
await updatePlatformInPom(httpPomPath, latestPlatform)
await smokeTest()
await prepareBranch(branchName, prTitle)
await octokit.rest.pulls.create({
owner: owner,
repo: repo,
title: prTitle,
body: prTitle,
base: 'main',
head: `${owner}:${branchName}`,
})
console.log("The PR has been created!")
}
main().then(value => {
console.log("OK!")
}).catch(reason => {
console.log("ERROR: ", reason)
process.exit(1)
})