From: John Mulligan Date: Thu, 13 Mar 2025 11:48:28 +0000 (-0400) Subject: script/build-with-container: fix incorrect build invocation for tests X-Git-Tag: testing/wip-pdonnell-testing-20250429.182310-reef-debug~59^2~1 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=e15a5f873d7b7f42e7c6ce29838082b39fd12a64;p=ceph-ci.git script/build-with-container: fix incorrect build invocation for tests The `tests` build target was set to build the "normal" target but it needs to build the tests. Signed-off-by: John Mulligan (cherry picked from commit 6b635d3ec080c9514442e2617d1ab868050a39d9) --- diff --git a/src/script/build-with-container.py b/src/script/build-with-container.py index 82f892924cb..dfbf967b5f8 100755 --- a/src/script/build-with-container.py +++ b/src/script/build-with-container.py @@ -569,7 +569,7 @@ def bc_run_tests(ctx): [ "bash", "-c", - f"cd {ctx.cli.homedir} && source ./run-make-check.sh && build && run", + f"cd {ctx.cli.homedir} && source ./run-make-check.sh && build tests && run", ], ) with ctx.user_command():