schutzbot: don't boot-test vmdk images in libvirt
The vmdk images are meant to be imported into VMWare vCenter, not to be booted directly. Our image-info tests verifies that this work, they should be converted into integration tests similar to the aws.sh script in the future. Signed-off-by: Tom Gundersen <teg@jklm.no>
This commit is contained in:
parent
b0cd29f78b
commit
496f921eff
2 changed files with 2 additions and 8 deletions
6
schutzbot/Jenkinsfile
vendored
6
schutzbot/Jenkinsfile
vendored
|
|
@ -394,12 +394,6 @@ void run_tests(test_type) {
|
|||
script: "test/image-tests/qemu.sh vhd"
|
||||
)
|
||||
|
||||
// Run the VMDK/VMware test.
|
||||
sh (
|
||||
label: "Integration test: VMDK",
|
||||
script: "test/image-tests/qemu.sh vmdk"
|
||||
)
|
||||
|
||||
// Run the AWS test.
|
||||
sh (
|
||||
label: "Integration test: AWS",
|
||||
|
|
|
|||
|
|
@ -16,8 +16,8 @@ if [[ $IMAGE_TYPE == 'openstack' ]]; then
|
|||
fi
|
||||
|
||||
# RHEL 8 cannot boot a VMDK using libvirt. See BZ 999789.
|
||||
if [[ $IMAGE_TYPE == vmdk ]] && [[ $ID == rhel ]]; then
|
||||
echo "🤷 RHEL 8 cannot boot a VMDK. See BZ 999789."
|
||||
if [[ $IMAGE_TYPE == vmdk ]]; then
|
||||
echo "🤷 libvirt cannot boot stream-optimized VMDK."
|
||||
exit 0
|
||||
fi
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue