From 86f56a9b88016ff48e2543667a1a624243965371 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 251137c05fd..535fda7007e 100755 --- a/src/script/build-with-container.py +++ b/src/script/build-with-container.py @@ -524,7 +524,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