summaryrefslogtreecommitdiff
path: root/tools/build_bench.ts
AgeCommit message (Collapse)Author
2024-09-20chore: update tools allow-run list (#25756)Divy Srivastava
2024-01-26chore: use granular unstable flags in tools/ (#22138)Bartek IwaƄczuk
2024-01-01chore: update copyright to 2024 (#21753)David Sherret
2023-06-06chore(core): build_bench tool (#19387)Matt Mastracci
This is a quick tool that I've been using to build benchmarking builds for Deno. Usage: Build a benchmark `HEAD~1` and `origin/main` executable: ```sh deno run tools/build_bench.ts HEAD~1 origin/main ``` Build debug benchmark executables of the last three commits: ```sh deno run tools/build_bench.ts --profile debug HEAD HEAD~1 HEAD~2 ```