Skip to content

Commit

Permalink
Fix getting relevant benchmarks for a product
Browse files Browse the repository at this point in the history
  • Loading branch information
Honny1 committed Feb 16, 2024
1 parent 86311ec commit c6d3411
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build-scripts/compile_all.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ def get_relevant_benchmarks(env_yaml, product_yaml):
out = set()
for benchmark in BENCHMARKS:
for path in benchmark_paths:
if benchmark in path:
if benchmark in os.path.normpath(path):
out.add(benchmark)
return out

Expand Down

0 comments on commit c6d3411

Please sign in to comment.