ci: remove the unused travis-install-pmdk.sh file
authorLukasz Dorau <lukasz.dorau@intel.com>
Tue, 6 Sep 2022 12:17:40 +0000 (14:17 +0200)
committerLukasz Dorau <lukasz.dorau@intel.com>
Tue, 6 Sep 2022 12:31:07 +0000 (14:31 +0200)
Remove the unused travis-install-pmdk.sh file.
The libpmem and libpmem2 libraries are installed from packages.

Signed-off-by: Lukasz Dorau <lukasz.dorau@intel.com>
ci/travis-install-pmdk.sh [deleted file]

diff --git a/ci/travis-install-pmdk.sh b/ci/travis-install-pmdk.sh
deleted file mode 100755 (executable)
index 7bde9fd..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/bin/bash -e
-
-# pmdk v1.9.1 release
-PMDK_VERSION=1.9.1
-
-WORKDIR=$(pwd)
-
-#
-# The '/bin/sh' shell used by PMDK's 'make install'
-# does not know the exact localization of clang
-# and fails with:
-#    /bin/sh: 1: clang: not found
-# if CC is not set to the full path of clang.
-#
-CC=$(type -P "$CC")
-export CC
-
-# Install PMDK libraries, because PMDK's libpmem
-# is a dependency of the librpma fio engine.
-# Install it from a release package
-# with already generated documentation,
-# in order to not install 'pandoc'.
-wget https://github.com/pmem/pmdk/releases/download/${PMDK_VERSION}/pmdk-${PMDK_VERSION}.tar.gz
-tar -xzf pmdk-${PMDK_VERSION}.tar.gz
-cd pmdk-${PMDK_VERSION}
-make -j"$(nproc)" NDCTL_ENABLE=n
-sudo make -j"$(nproc)" install prefix=/usr NDCTL_ENABLE=n
-cd "$WORKDIR"
-rm -rf pmdk-${PMDK_VERSION}