test: disable verification step for vsphere builds

The vsphere verification is failing consistently with the following
error message from govc:

  A component of the virtual machine is not accessible on the host.

Disabling it until we have time to look into it further.
This commit is contained in:
Achilleas Koutsou 2025-04-15 15:14:26 +02:00 committed by Tomáš Hozza
parent 2c431726a3
commit eda67e2cc6
2 changed files with 14 additions and 9 deletions

View file

@ -108,11 +108,13 @@ function verify() {
verifyDisk "${WORKDIR}/disk.qcow2"
;;
"${IMAGE_TYPE_VSPHERE}")
curl "${S3_URL}" --output "${WORKDIR}/disk.vmdk"
verifyInVSphere "${WORKDIR}/disk.vmdk"
;;
# NOTE(akoutsou): The vsphere verification is failing very
# consistently. Disabling it until we have time to look into it
# further.
# "${IMAGE_TYPE_VSPHERE}")
# curl "${S3_URL}" --output "${WORKDIR}/disk.vmdk"
# verifyInVSphere "${WORKDIR}/disk.vmdk"
# ;;
*)
greenprint "No validation method for image type ${IMAGE_TYPE}"
;;

View file

@ -147,10 +147,13 @@ function verify() {
verifyDisk "${WORKDIR}/disk.qcow2"
;;
"${IMAGE_TYPE_VSPHERE}")
curl "${S3_URL}" --output "${WORKDIR}/disk.vmdk"
verifyInVSphere "${WORKDIR}/disk.vmdk"
;;
# NOTE(akoutsou): The vsphere verification is failing very
# consistently. Disabling it until we have time to look into it
# further.
# "${IMAGE_TYPE_VSPHERE}")
# curl "${S3_URL}" --output "${WORKDIR}/disk.vmdk"
# verifyInVSphere "${WORKDIR}/disk.vmdk"
# ;;
*)
greenprint "No validation method for image type ${IMAGE_TYPE}"
;;