All our images already support UEFI, let's simplify the code. Signed-off-by: Ondřej Budai <ondrej@budai.cz>
19 lines
505 B
Bash
19 lines
505 B
Bash
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
#
|
|
# Helper script that executes `tools/libvirt_test.sh` with the appropiate image type and boot type
|
|
#
|
|
|
|
# Get OS data.
|
|
source /usr/libexec/osbuild-composer-test/set-env-variables.sh
|
|
|
|
# Provision the software under test.
|
|
/usr/libexec/osbuild-composer-test/provision.sh none
|
|
|
|
# Test the images
|
|
/usr/libexec/osbuild-composer-test/libvirt_test.sh qcow2
|
|
|
|
/usr/libexec/osbuild-composer-test/libvirt_test.sh openstack
|
|
|
|
/usr/libexec/osbuild-composer-test/libvirt_test.sh qcow2 uefi
|