summaryrefslogtreecommitdiffstats
path: root/install-deps.sh
diff options
context:
space:
mode:
authorKefu Chai <tchaikov@gmail.com>2022-06-21 17:28:23 +0200
committerKefu Chai <tchaikov@gmail.com>2022-06-21 17:28:25 +0200
commitfbfb369722fe9f92ad333f8368095637c36c10ec (patch)
tree46712830220071c67cecb9e63a856b994f1d3892 /install-deps.sh
parentMerge pull request #46743 from idryomov/wip-rbd-mirror-schedule-watchless (diff)
downloadceph-fbfb369722fe9f92ad333f8368095637c36c10ec.tar.xz
ceph-fbfb369722fe9f92ad333f8368095637c36c10ec.zip
install-deps.sh: do not install libpmem from chacra
this change reverts 17d2bc3707bb0078e2fa1b4eef31b39804e45135, before we recreate a chacra repo hosting libpmem packages, we are not able to query the repo from shaman or pull the dependencies from chacra. in future, we should be able to get the libpmem dependencies from offical ubuntu package repo and fedora, CentOS Stream and RHEL repos. Signed-off-by: Kefu Chai <tchaikov@gmail.com>
Diffstat (limited to 'install-deps.sh')
-rwxr-xr-xinstall-deps.sh16
1 files changed, 0 insertions, 16 deletions
diff --git a/install-deps.sh b/install-deps.sh
index 1302d2d3fe6..071ec10299f 100755
--- a/install-deps.sh
+++ b/install-deps.sh
@@ -220,20 +220,6 @@ function install_libzbd_on_ubuntu {
libzbd-dev
}
-function install_libpmem_on_ubuntu {
- in_jenkins && echo "CI_DEBUG: Running install_libpmem_on_ubuntu() in install-deps.sh"
- local codename=$1
- local project=pmem
- local sha1=7c18b4b1413ae965ea8bcbfc69eb9784f9212319
- install_pkg_on_ubuntu \
- $project \
- $sha1 \
- $codename \
- check \
- libpmem-dev \
- libpmemobj-dev
-}
-
function version_lt {
test $1 != $(echo -e "$1\n$2" | sort -rV | head -n 1)
}
@@ -308,7 +294,6 @@ if [ x$(uname)x = xFreeBSDx ]; then
else
[ $WITH_SEASTAR ] && with_seastar=true || with_seastar=false
[ $WITH_ZBD ] && with_zbd=true || with_zbd=false
- [ $WITH_PMEM ] && with_pmem=true || with_pmem=false
[ $WITH_RADOSGW_MOTR ] && with_rgw_motr=true || with_rgw_motr=false
motr_pkgs_url='https://github.com/Seagate/cortx-motr/releases/download/2.0.0-rgw'
source /etc/os-release
@@ -327,7 +312,6 @@ else
*Focal*)
[ ! $NO_BOOST_PKGS ] && install_boost_on_ubuntu focal
$with_zbd && install_libzbd_on_ubuntu focal
- $with_pmem && install_libpmem_on_ubuntu focal
;;
*)
$SUDO apt-get install -y gcc