Skip to content

Commit 3a2b380

Browse files
authored
fix: update build command to include 'clean' for benchmarks (#1762)
Signed-off-by: Gregor Zeitlinger <gregor.zeitlinger@grafana.com>
1 parent bc673ff commit 3a2b380

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.mise/tasks/update_benchmarks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def run_cmd(cmd: List[str], cwd: Optional[str] = None) -> str:
7474

7575
def build_benchmarks(mvnw: str, module: str) -> None:
7676
print(f"Building Maven module '{module}' using {mvnw} (this may take a while)...")
77-
cmd = [mvnw, "-pl", module, "-am", "-DskipTests", "package"]
77+
cmd = [mvnw, "-pl", module, "-am", "-DskipTests", "clean", "package"]
7878
run_cmd(cmd)
7979
print("Build completed.")
8080

0 commit comments

Comments
 (0)