From 0d8634ec8f4445d463dd1781baaa6945c9ddadea Mon Sep 17 00:00:00 2001 From: John Mulligan Date: Thu, 29 May 2025 10:21:49 -0400 Subject: [PATCH] script/build-with-container: remove unused build arg Remove the unused build arg for JENKINS_HOME. This was once used to try and create build images like the CI jobs. However, the env var is now unconditionally set in the build script and must be passed (or not) explicitly by the user. Signed-off-by: John Mulligan (cherry picked from commit 6f5b23a39eadaa6e1f4df3a882cbb872f497d8fa) --- src/script/build-with-container.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/script/build-with-container.py b/src/script/build-with-container.py index 94c9fb3809cf9..3b519fe63da1e 100755 --- a/src/script/build-with-container.py +++ b/src/script/build-with-container.py @@ -539,7 +539,6 @@ def build_container(ctx): "-t", ctx.image_name, f"--label=io.ceph.build-with-container.src={_hash_sources()}", - f"--build-arg=JENKINS_HOME={ctx.cli.homedir}", f"--build-arg=CEPH_BASE_BRANCH={ctx.base_branch()}", ] if ctx.cli.distro: -- 2.39.5