Skip to content
Snippets Groups Projects
Commit d73d4eb7 authored by Nicolas Richart's avatar Nicolas Richart
Browse files

Merge branch 'fix/mlnx_rhel9.4' into 'release/pinot-noir/rhel9.4'

fix(mellanox): Enable the mlnx-ofed repo when installing Mellanox packages

See merge request !48
parents 2ecaece0 e7ded645
No related branches found
No related tags found
2 merge requests!48fix(mellanox): Enable the mlnx-ofed repo when installing Mellanox packages,!43Release/pinot noir/rhel9.4
Pipeline #282710 passed with warnings
......@@ -2,5 +2,7 @@
set -e -o pipefail
dnf --setopt=install_weak_deps=False install -y libibverbs libibverbs-utils \
rdma-core rdma-core-devel
MLNX_REPO=$(dnf repolist --all 2>&1 | awk '/mlnx-en/ {print $1}')
dnf --setopt=install_weak_deps=False install -y --enablerepo="${MLNX_REPO}" \
libibverbs libibverbs-utils rdma-core rdma-core-devel
......@@ -2,5 +2,8 @@
set -e -o pipefail
dnf --setopt=install_weak_deps=False install -y libibverbs libibverbs-utils \
rdma-core rdma-core-devel hcoll xpmem kmod-knem
MLNX_REPO=$(dnf repolist --all 2>&1 | awk '/mlnx-ofed/ {print $1}')
dnf --setopt=install_weak_deps=False install -y --enablerepo="${MLNX_REPO}" \
libibverbs libibverbs-utils rdma-core rdma-core-devel hcoll xpmem \
mlnx-ofa_kernel-modules
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment