Merge branch 'fix/remove-sudo-in-test-script' of https://github.com/dpronin/fio
[fio.git] / ci / travis-install-pmdk.sh
CommitLineData
e4c4625f
JM
1#!/bin/bash -e
2
3# pmdk v1.9.1 release
4PMDK_VERSION=1.9.1
5
6WORKDIR=$(pwd)
7
8#
9# The '/bin/sh' shell used by PMDK's 'make install'
10# does not know the exact localization of clang
11# and fails with:
12# /bin/sh: 1: clang: not found
13# if CC is not set to the full path of clang.
14#
e28b6d0a 15export CC=$(type -P $CC)
e4c4625f
JM
16
17# Install PMDK libraries, because PMDK's libpmem
18# is a dependency of the librpma fio engine.
19# Install it from a release package
20# with already generated documentation,
21# in order to not install 'pandoc'.
22wget https://github.com/pmem/pmdk/releases/download/${PMDK_VERSION}/pmdk-${PMDK_VERSION}.tar.gz
23tar -xzf pmdk-${PMDK_VERSION}.tar.gz
24cd pmdk-${PMDK_VERSION}
25make -j$(nproc) NDCTL_ENABLE=n
26sudo make -j$(nproc) install prefix=/usr NDCTL_ENABLE=n
27cd $WORKDIR
28rm -rf pmdk-${PMDK_VERSION}