]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
script/build-with-container: fix incorrect build invocation for tests
authorJohn Mulligan <jmulligan@redhat.com>
Thu, 13 Mar 2025 11:48:28 +0000 (07:48 -0400)
committerJohn Mulligan <jmulligan@redhat.com>
Thu, 13 Mar 2025 12:01:52 +0000 (08:01 -0400)
The `tests` build target was set to build the "normal" target but it
needs to build the tests.

Signed-off-by: John Mulligan <jmulligan@redhat.com>
src/script/build-with-container.py

index aee8658c98c687bd3c3a758dca2603ca70ad8043..6107c8cfa3efc2d9066dcbd703084acea846502f 100755 (executable)
@@ -572,7 +572,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():