diff --git a/ci/docker/ubuntu/scripts/deps/build.sh b/ci/docker/ubuntu/scripts/deps/build.sh index e8938c9e8..2bed50e50 100644 --- a/ci/docker/ubuntu/scripts/deps/build.sh +++ b/ci/docker/ubuntu/scripts/deps/build.sh @@ -1,7 +1,7 @@ CMAKE_VERSION="v3.23" apt-get update && apt-get install -y --no-install-recommends wget curl g++ gcc ca-certificates \ gpg make ccache python3-dev gfortran python3-setuptools swig pip \ -libaio-dev libgoogle-perftools-dev clang-format libboost-program-options-dev \ +libaio-dev libboost-program-options-dev \ && wget -O - https://apt.kitware.com/keys/kitware-archive-latest.asc \ 2>/dev/null | gpg --dearmor - | tee \ /usr/share/keyrings/kitware-archive-keyring.gpg >/dev/null \ diff --git a/ci/docker/ubuntu/scripts/deps/debug.sh b/ci/docker/ubuntu/scripts/deps/debug.sh index 58d944742..e5f21f26d 100644 --- a/ci/docker/ubuntu/scripts/deps/debug.sh +++ b/ci/docker/ubuntu/scripts/deps/debug.sh @@ -3,7 +3,7 @@ CMAKE_TAR="cmake-3.23.0-linux-x86_64.tar.gz" HDF_VERSION="1.13.2" apt-get update && apt-get install -y --no-install-recommends wget curl g++ gcc ca-certificates \ make ccache python3-dev gfortran python3-setuptools swig libopenblas-dev pip git vim \ -libaio-dev libgoogle-perftools-dev clang-format libboost-all-dev \ +libaio-dev libboost-all-dev \ && apt-get remove --purge -y \ && rm -rf /var/lib/apt/lists/* \ && wget https://github.com/xianyi/OpenBLAS/archive/v0.3.21.tar.gz && \ diff --git a/scripts/install_deps.sh b/scripts/install_deps.sh index 985ec0883..986d56224 100755 --- a/scripts/install_deps.sh +++ b/scripts/install_deps.sh @@ -79,7 +79,7 @@ if [[ "${MACHINE}" == "Linux" ]]; then fi #DiskANN dependencies sudo apt-get install -y libboost-program-options-dev - sudo apt-get install -y libaio-dev libgoogle-perftools-dev clang-format + sudo apt-get install -y libaio-dev elif [[ -x "$(command -v yum)" ]]; then # for CentOS 7 sudo yum install -y epel-release centos-release-scl-rh wget && \ @@ -93,7 +93,7 @@ if [[ "${MACHINE}" == "Linux" ]]; then source "/etc/profile.d/llvm-toolset-7.sh" #DiskANN dependencies sudo yum -y install boost-program-options - sudo yum -y install boost libaio gperftools-devel + sudo yum -y install boost libaio #CMake 3.18 or higher is required wget -c https://github.com/Kitware/CMake/releases/download/v3.22.2/cmake-3.22.2-linux-x86_64.tar.gz && \ tar -zxvf cmake-3.22.2-linux-x86_64.tar.gz && \