From 2285b7d752f25725b659e45c1aad8c67eff88879 Mon Sep 17 00:00:00 2001 From: Pavel Marek Date: Tue, 15 Oct 2024 14:17:17 +0200 Subject: [PATCH] Fix invocation of single benchmarks in `std-benchmarks` (#11321) # Important Notes - `std-benchmarks/bench`, which is invoked on the CI, is not affected. It still works as expected. - Updated list of all projects in `enso` aggregate in c1d43b3ebf3f9b68a269ca1fed72d942702c8416 --- build.sbt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 98dc0921ce6f..342f1b69da2c 100644 --- a/build.sbt +++ b/build.sbt @@ -3967,7 +3967,8 @@ lazy val `std-benchmarks` = (project in file("std-bits/benchmarks")) Map( runtimeModName -> Seq( "ALL-UNNAMED", - (`benchmarks-common` / javaModuleName).value + (`benchmarks-common` / javaModuleName).value, + (`bench-processor` / javaModuleName).value ) ) },