From b005a117ac336e10d9ff101bab296d0e271180d7 Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Mon, 25 Jan 2021 14:00:36 +0800 Subject: [PATCH] ceph-pull-requests: enable WITH_ZBD on ubuntu to avoid zbd backend bitrot, and for build test it in our "make check" builds. currently, libzbd-devel and libzbd packages were only prebuilt on bionic, so only enable this on ubuntu distros. Signed-off-by: Kefu Chai --- ceph-pull-requests/build/build | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ceph-pull-requests/build/build b/ceph-pull-requests/build/build index 1ea1390c..93778560 100644 --- a/ceph-pull-requests/build/build +++ b/ceph-pull-requests/build/build @@ -1,6 +1,9 @@ #!/bin/bash -ex export NPROC=$(nproc) export WITH_SEASTAR=true +if which apt-get > /dev/null ; then + export WITH_ZBD=true +fi timeout 3h ./run-make-check.sh sleep 5 ps -ef | grep -v jnlp | grep ceph || true -- 2.39.5