From f75a36fe9a403baa7e1f939b23af848de27b30ba Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Thu, 18 Mar 2021 19:43:06 +0800 Subject: [PATCH] install-deps.sh: install libzbd on focal WITH_ZBD is enabled for testing the build of zbd bluestore backend, and we plan to migrate to Ubuntu/Focal for testing "make check", so need to install libzbd when the distro version is focal. Signed-off-by: Kefu Chai --- install-deps.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/install-deps.sh b/install-deps.sh index 482bdf5a5ab0e..4f4fb7b24d657 100755 --- a/install-deps.sh +++ b/install-deps.sh @@ -308,6 +308,9 @@ else [ ! $NO_BOOST_PKGS ] && install_boost_on_ubuntu bionic $with_zbd && install_libzbd_on_ubuntu bionic ;; + *Focal*) + $with_zbd && install_libzbd_on_ubuntu focal + ;; *) $SUDO apt-get install -y gcc ;; -- 2.39.5