Commit 98678abe authored by Michal Berger's avatar Michal Berger Committed by Tomasz Zawadzki
Browse files

vm_setup: Add some missing dependencies



btrfs-progs and xfsprofs are required by some of the tests, e.g.
the nvmf/target/filesystem.sh.

abigail package provides abidiff needed for check_so_deps.sh tests.

Change-Id: I5199fafef2ac03ce04ea3709e9ff76fefa1ac717
Signed-off-by: default avatarMichal Berger <michalx.berger@intel.com>
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/2923


Community-CI: Broadcom CI
Tested-by: default avatarSPDK CI Jenkins <sys_sgci@intel.com>
Reviewed-by: default avatarBen Walker <benjamin.walker@intel.com>
Reviewed-by: default avatarJim Harris <james.r.harris@intel.com>
parent 43ad7feb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -23,7 +23,7 @@ apt-get install -y libnuma-dev
apt-get install -y autoconf automake libtool help2man
if [[ $INSTALL_DEV_TOOLS == "true" ]]; then
	# Tools for developers
	apt-get install -y git astyle pep8 lcov clang sg3-utils pciutils shellcheck
	apt-get install -y git astyle pep8 lcov clang sg3-utils pciutils shellcheck abigail-tools
	# Additional python style checker not available on ubuntu 16.04 or earlier.
	apt-get install -y pycodestyle || true
	# Additional dependecies for nvmf performance test script
+1 −1
Original line number Diff line number Diff line
@@ -48,7 +48,7 @@ if [[ $INSTALL_DEV_TOOLS == "true" ]]; then
	else
		yum install -y python-pycodestyle lcov ShellCheck
	fi
	yum install -y git astyle sg3_utils pciutils
	yum install -y git astyle sg3_utils pciutils libabigail
fi
if [[ $INSTALL_PMEM == "true" ]]; then
	# Additional dependencies for building pmem based backends
+1 −0
Original line number Diff line number Diff line
@@ -94,6 +94,7 @@ packages=(
	bc
	smartmontools
	wget
	xfsprogs
)

if [[ $OSID != ubuntu ]]; then
+1 −0
Original line number Diff line number Diff line
@@ -57,6 +57,7 @@ packages=(
	systemd-devel
	smartmontools
	wget
	xfsprogs
)

pre_install() {
+1 −0
Original line number Diff line number Diff line
@@ -52,6 +52,7 @@ packages=(
	smartmontools
	parted
	wget
	xfsprogs
)

# TODO:
Loading