From 8f6bcce1676f510c27130c35c7464c6a63175fd7 Mon Sep 17 00:00:00 2001 From: John Mulligan Date: Tue, 10 Jun 2025 20:15:28 -0400 Subject: [PATCH] script/buildcontainer-setup: set WITH_CRIMSON to support crimson builds Set the WITH_CRIMSON env var so that crimson related dependencies are installed and the build image can build crimson flavored ceph. Signed-off-by: John Mulligan --- src/script/buildcontainer-setup.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/src/script/buildcontainer-setup.sh b/src/script/buildcontainer-setup.sh index 43e45fcd9b7dd..c263ef44a79a0 100644 --- a/src/script/buildcontainer-setup.sh +++ b/src/script/buildcontainer-setup.sh @@ -5,6 +5,7 @@ install_container_deps() { # set JENKINS_HOME in order to have the build container look as much # like an existing jenkins build environment as possible export JENKINS_HOME=/ceph + export WITH_CRIMSON=true prepare } -- 2.39.5