pkgdep: do not install grpcio modules on Centos7

grpcio, grpcio-tools modules have compilation
problem on Centos7 and are not necessary under
this OS.

Signed-off-by: Kamil Godzwon <kamilx.godzwon@intel.com>
Change-Id: I2b48a3b1b2deafa983adf83424940ffa6ce7d20e
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/13070
Community-CI: Broadcom CI <spdk-ci.pdl@broadcom.com>
Community-CI: Mellanox Build Bot
Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
Reviewed-by: Karol Latecki <karol.latecki@intel.com>
Reviewed-by: Konrad Sztyber <konrad.sztyber@intel.com>
Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com>
This commit is contained in:
Kamil Godzwon 2022-06-20 08:35:11 -04:00 committed by Tomasz Zawadzki
parent df1e07e909
commit eb341f672c

View File

@ -103,8 +103,11 @@ pip3 install meson
pip3 install pyelftools pip3 install pyelftools
pip3 install ijson pip3 install ijson
pip3 install python-magic pip3 install python-magic
pip3 install grpcio if ! [[ $ID == centos && $VERSION_ID == 7 ]]; then
pip3 install grpcio-tools # Problem with modules compilation on Centos7
pip3 install grpcio
pip3 install grpcio-tools
fi
pip3 install pyyaml pip3 install pyyaml
# Additional dependencies for SPDK CLI - not available in rhel and centos # Additional dependencies for SPDK CLI - not available in rhel and centos