test/integration: fix ppc64le dependencies for fedora

gcc-plugin-devel needs to be installed on ppc64le fedora.

Signed-off-by: Artem Savkov <asavkov@redhat.com>
This commit is contained in:
Artem Savkov 2021-02-08 10:40:36 +01:00
parent 0baefa561b
commit b75bcba6e2
1 changed files with 4 additions and 0 deletions

View File

@ -18,6 +18,10 @@ kpatch_fedora_dependencies()
sudo dnf debuginfo-install -y "kernel-${kernel_version%.*}"
sudo dnf install -y ccache
if [[ "$(uname -m)" == "ppc64le" ]]; then
sudo yum install -y gcc-plugin-devel
fi
}
kpatch_ubuntu_dependencies()