forked from TypeScriptToLua/TypeScriptToLua
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreate_benchmark_check.js
More file actions
22 lines (16 loc) · 1013 Bytes
/
create_benchmark_check.js
File metadata and controls
22 lines (16 loc) · 1013 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
module.exports = ({ github, context, core }) => {
const fs = require("fs");
const benchmarkResultPathLua = core.getInput("benchmark-result-path-lua", { required: true });
const benchmarkInfoLua = JSON.parse(fs.readFileSync(benchmarkResultPathLua));
const benchmarkResultPathJIT = core.getInput("benchmark-result-path-jit", { required: true });
const benchmarkInfoJIT = JSON.parse(fs.readFileSync(benchmarkResultPathJIT));
// Remove Comparison info to save some bytes
const benchmarkInfoForVizLua = { old: benchmarkInfoLua.old, new: benchmarkInfoLua.new };
const buffer = Buffer.from(JSON.stringify(benchmarkInfoForVizLua));
const zlib = require("zlib");
const compressed = zlib.deflateSync(buffer);
const summary =
`[Open visualizer](https://typescripttolua.github.io/benchviz?d=${compressed.toString("base64")})\n` +
`### Lua5.3\n${benchmarkInfoLua.comparison.summary}\n### LuaJIT\n${benchmarkInfoJIT.comparison.summary}`;
return summary;
};