From 87f4a8914c297c505d8d79fc88063926d0113ff0 Mon Sep 17 00:00:00 2001 From: Adam Emerson Date: Fri, 27 Oct 2023 17:01:35 -0400 Subject: [PATCH] build: Don't kill install-deps.sh if we can't get ceph-libboost We can still use the submodule. Signed-off-by: Adam Emerson --- install-deps.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/install-deps.sh b/install-deps.sh index 50a62682765c1..d01bc6464e6f9 100755 --- a/install-deps.sh +++ b/install-deps.sh @@ -216,7 +216,9 @@ function install_boost_on_ubuntu { ceph-libboost-system${boost_ver}-dev \ ceph-libboost-test${boost_ver}-dev \ ceph-libboost-thread${boost_ver}-dev \ - ceph-libboost-timer${boost_ver}-dev + ceph-libboost-timer${boost_ver}-dev \ + || ci_debug "ceph-libboost package unavailable, you can build the submodule" + } function install_libzbd_on_ubuntu { -- 2.39.5