Skip to content

Commit

Permalink
Move the benchmark markdown files from dist/ to build/
Browse files Browse the repository at this point in the history
  • Loading branch information
bjorn3 committed Dec 18, 2024
1 parent cae568e commit 88139f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build_system/bench.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ pub(crate) fn benchmark(dirs: &Dirs, compiler: &Compiler) {
target_dir = target_dir.display(),
);

let bench_compile_markdown = dirs.dist_dir.join("bench_compile.md");
let bench_compile_markdown = dirs.build_dir.join("bench_compile.md");

let bench_compile = hyperfine_command(
0,
Expand All @@ -90,7 +90,7 @@ pub(crate) fn benchmark(dirs: &Dirs, compiler: &Compiler) {

eprintln!("[BENCH RUN] ebobby/simple-raytracer");

let bench_run_markdown = dirs.dist_dir.join("bench_run.md");
let bench_run_markdown = dirs.build_dir.join("bench_run.md");

let raytracer_cg_llvm =
Path::new(".").join(get_file_name(&compiler.rustc, "raytracer_cg_llvm", "bin"));
Expand Down

0 comments on commit 88139f0

Please sign in to comment.