From 89d4d60565ac3d8438aa2a83fa96fa9dcf4bff30 Mon Sep 17 00:00:00 2001 From: John Mulligan Date: Tue, 18 Mar 2025 18:53:19 -0400 Subject: [PATCH] src/script: add seastar deps to ubuntu container image Add some dependencies that are needed to build with seastar enabled on ubuntu (22.04). These deps apparently don't get installed via install-deps.sh - possibly because ubuntu packages never enable seastar/crimson? Signed-off-by: John Mulligan (cherry picked from commit 6acd8f039ee56cfe0ad70d6c80cbcabe25984ac3) --- src/script/buildcontainer-setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/script/buildcontainer-setup.sh b/src/script/buildcontainer-setup.sh index 6a4eb12aa9b..f655bcb6a93 100644 --- a/src/script/buildcontainer-setup.sh +++ b/src/script/buildcontainer-setup.sh @@ -42,7 +42,7 @@ case "${CEPH_BASE_BRANCH}~${DISTRO_KIND}" in ;; *~*ubuntu*) apt-get update - apt-get install -y wget reprepro curl software-properties-common + apt-get install -y wget reprepro curl software-properties-common lksctp-tools libsctp-dev protobuf-compiler ragel libc-ares-dev install_container_deps ;; *) -- 2.39.5