f4937949d6
* Add timer setting * Setup benchmark code * Setup memory benchmark * Add compare function * Add result preview * Setup results preview * Simplify script for CI * Update CI * Cleanup * Temp remove fork guard * Fix stuff * Fix again * Fix quotes * Fix multiline output * Simplify title * Fix memory numbers * Remove astro bin dir * Fix gc * Add repo guards * Fix wrong call * Set max space size * Remove guard * Bump memory a bit * Organize neatly * Update readme * Try large md * Try no gc * Revert markdown and gc changes * Test sha * Try ref * Try 128mb * Set 256 * Add guard * Apply suggestions from code review Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca> * Add docs comment --------- Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca>
13 lines
496 B
JavaScript
13 lines
496 B
JavaScript
// This script helps extract the benchmark logs that are between the `==========` lines.
|
|
// They are a convention defined in the `./bench/_template.js` file, which are used to log
|
|
// out with the `!bench` command. See `/.github/workflows/benchmark.yml` to see how it's used.
|
|
const benchLogs = process.argv[2];
|
|
const resultRegex = /==========(.*?)==========/gs;
|
|
|
|
let processedLog = '';
|
|
let m;
|
|
while ((m = resultRegex.exec(benchLogs))) {
|
|
processedLog += m[1] + '\n';
|
|
}
|
|
|
|
console.log(processedLog);
|