From: Kefu Chai Date: Thu, 18 Mar 2021 11:43:06 +0000 (+0800) Subject: install-deps.sh: install libzbd on focal X-Git-Tag: v17.1.0~2554^2~5 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=f75a36fe9a403baa7e1f939b23af848de27b30ba;p=ceph-ci.git 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 --- diff --git a/install-deps.sh b/install-deps.sh index 482bdf5a5ab..4f4fb7b24d6 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 ;;