diff --git a/test/common/config/pkgdep/git b/test/common/config/pkgdep/git index c86d8c1af..16467e0c6 100644 --- a/test/common/config/pkgdep/git +++ b/test/common/config/pkgdep/git @@ -595,8 +595,13 @@ function install_sources() { if [[ $INSTALL_REFSPDK == true ]]; then # Serialize builds as refspdk depends on spdk [[ $INSTALL_SPDK != true ]] && install_spdk - install_refspdk latest - install_refspdk LTS + if [[ $ID == fedora ]] && (( VERSION_ID >= 36 )); then + echo "Serialized SPDK release builds are not used anymore for newer Fedora images. Skip." + return 0 + else + install_refspdk latest + install_refspdk LTS + fi fi }