From: Kefu Chai Date: Sat, 28 Sep 2019 14:19:08 +0000 (+0800) Subject: do_cmake.sh: disable amqp and rdma on RHEL/CentOS 8 X-Git-Tag: v15.1.0~1363^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=a118ba0edadf5db8ccd171920982976ef75c9a75;p=ceph-ci.git do_cmake.sh: disable amqp and rdma on RHEL/CentOS 8 RHEL/CentOS 8 does not offer librabbitmq-devel, libibverbs-devel and librdmacm-devel at this moment. so disable these features now. Signed-off-by: Kefu Chai --- diff --git a/do_cmake.sh b/do_cmake.sh index 569241d6a59..8c15d970242 100755 --- a/do_cmake.sh +++ b/do_cmake.sh @@ -23,6 +23,8 @@ if [ -r /etc/os-release ]; then MAJOR_VER=$(echo "$VERSION_ID" | sed -e 's/\..*$//') if [ "$MAJOR_VER" -ge "8" ] ; then PYBUILD="3.6" + ARGS+=" -DWITH_RADOSGW_AMQP_ENDPOINT=OFF" + ARGS+=" -DWITH_RDMA=OFF" fi ;; opensuse*|suse|sles)