From b0a18e919b1125b45357f3a5a9f37f022f8ece71 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Fri, 20 Dec 2024 12:54:01 +0100 Subject: [PATCH] Set relative path to output file --- .github/workflows/benchmark.yml | 4 ++-- .github/workflows/stress_benchmark.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index 059ef365cf..7a481ea745 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -38,9 +38,9 @@ jobs: uses: ultimaker/cura-workflows/.github/workflows/benchmark.yml@main with: conan_extra_args: "-o \"curaengine/*:enable_benchmarks=True\"" - benchmark_cmd: "./build/Release/benchmark/benchmarks --benchmark_format=json --benchmark_out=benchmark_result.json" + benchmark_cmd: "benchmark/benchmarks --benchmark_format=json --benchmark_out=benchmark_result.json" name: "C++ Benchmark" - output_file_path: "build/Release/benchmark_result.json" + output_file_path: "benchmark_result.json" data_dir: "dev/bench" tool: "googlecpp" alert_threshold: "150%" diff --git a/.github/workflows/stress_benchmark.yml b/.github/workflows/stress_benchmark.yml index 5882ec51d0..8eed7fdcd6 100644 --- a/.github/workflows/stress_benchmark.yml +++ b/.github/workflows/stress_benchmark.yml @@ -39,7 +39,7 @@ jobs: conan_extra_args: "-o curaengine:enable_benchmarks=True" benchmark_cmd: "stress_benchmark/stress_benchmark -o benchmark_result.json" name: "Stress Benchmark" - output_file_path: "build/Release/benchmark_result.json" + output_file_path: "benchmark_result.json" data_dir: "dev/stress_bench" tool: "customSmallerIsBetter" secrets: inherit