pgkdep/git: Remove SPDK's QEMU fork

We replaced it with upstream qemu for most of the CI jobs, hence the
SPDK's fork is not needed anymore.

Signed-off-by: Michal Berger <michalx.berger@intel.com>
Change-Id: Ic65720709cbf26330e1ada61f313bba4c86eb6df
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/10937
Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
Community-CI: Broadcom CI <spdk-ci.pdl@broadcom.com>
Reviewed-by: Karol Latecki <karol.latecki@intel.com>
Reviewed-by: Dong Yi <dongx.yi@intel.com>
Reviewed-by: Jun Wen <junx.wen@intel.com>
Reviewed-by: Changpeng Liu <changpeng.liu@intel.com>
Reviewed-by: Konrad Sztyber <konrad.sztyber@intel.com>
Reviewed-by: Jim Harris <james.r.harris@intel.com>
This commit is contained in:
Michal Berger 2021-12-31 11:15:58 +01:00 committed by Jim Harris
parent 0badf81e62
commit ca256d3b85

View File

@ -294,12 +294,9 @@ function install_qemu() {
# use-cases:
# - Packed QEMU: version provided by given distro. Used to boot VMs
# from within vhost tests.
# - SPDK QEMU: A special fork to test OCSSDs. Most jobs on CI use
# this version for booting the VMs.
# - vfio-user QEMU: A special fork to test libvfio-user components.
# - Vanilla QEMU: Used for the upstream PMR support.
# - Vanilla QEMU: Used by the CI to boot the testing VMs.
_install_qemu $GIT_REPO_QEMU_SPDK $SPDK_QEMU_BRANCH
_install_qemu $GIT_REPO_QEMU_VFIO $VFIO_QEMU_BRANCH
_install_qemu "$GIT_REPO_QEMU" "$VANILLA_QEMU_BRANCH" vanilla
}
@ -564,7 +561,6 @@ function install_sources() {
GIT_VERSION=2.25.1
IRDMA_VERSION=1.7.72
ICE_VERSION=1.7.16
SPDK_QEMU_BRANCH=${SPDK_QEMU_BRANCH:-spdk-5.0.0}
VFIO_QEMU_BRANCH=${VFIO_QEMU_BRANCH:-vfio-user-v0.93}
VANILLA_QEMU_BRANCH=${VANILLA_QEMU_BRANCH:-v6.0.0}
@ -580,8 +576,6 @@ export GIT_REPO_FIO
export GIT_REPO_FLAMEGRAPH
: ${GIT_REPO_QEMU=https://github.com/qemu/qemu}
export GIT_REPO_QEMU
: ${GIT_REPO_QEMU_SPDK=https://github.com/spdk/qemu}
export GIT_REPO_QEMU_SPDK
: ${GIT_REPO_QEMU_VFIO=https://github.com/oracle/qemu}
export GIT_REPO_QEMU_VFIO
: ${GIT_REPO_LIBISCSI=https://github.com/sahlberg/libiscsi}