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: Michal Berger <michalx.berger@intel.com> Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/2923 Community-CI: Broadcom CI Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com>
64 lines
734 B
Plaintext
64 lines
734 B
Plaintext
package_manager=pacman
|
|
|
|
upgrade() {
|
|
sudo "$package_manager" -Syu --noconfirm --needed
|
|
}
|
|
|
|
install() {
|
|
(($#)) || return 0
|
|
|
|
sudo "$package_manager" -Sy --noconfirm --needed "$@"
|
|
}
|
|
|
|
pre_install() {
|
|
if [[ $INTSALL_TSOCKS == true ]]; then
|
|
install tsocks
|
|
fi
|
|
}
|
|
|
|
packages=(
|
|
valgrind
|
|
jq
|
|
nvme-cli
|
|
ceph
|
|
gdb
|
|
fio
|
|
linux-headers
|
|
gflags
|
|
autoconf
|
|
automake
|
|
libtool
|
|
libutil-linux
|
|
libiscsi
|
|
open-isns
|
|
glib2
|
|
pixman
|
|
flex
|
|
bison
|
|
elfutils
|
|
libelf
|
|
astyle
|
|
gptfdisk
|
|
socat
|
|
sshfs
|
|
sshpass
|
|
python-pandas
|
|
btrfs-progs
|
|
iptables
|
|
clang
|
|
bc
|
|
perl-switch
|
|
open-iscsi
|
|
smartmontools
|
|
parted
|
|
wget
|
|
xfsprogs
|
|
)
|
|
|
|
# TODO:
|
|
# These are either missing or require some other installation method
|
|
# than pacman:
|
|
# librbd-devel
|
|
# perl-open
|
|
# targetcli
|