diff options
| author | 2024-08-09 10:49:58 -0400 | |
|---|---|---|
| committer | 2024-08-09 11:17:35 -0400 | |
| commit | c4d19f7f8e4f725ca9ce8774c00b40549138fef8 (patch) | |
| tree | fc68bccdcce375ac392c3ca9a2061bc0a66bd0a1 /tmt/plans | |
| parent | 40e3039216350519d091b7e262e80a8ea6425088 (diff) | |
| download | kiwi-descriptions-c4d19f7f8e4f725ca9ce8774c00b40549138fef8.tar.gz kiwi-descriptions-c4d19f7f8e4f725ca9ce8774c00b40549138fef8.zip | |
kiwi-build, tmt: Require setting the kiwi filename for the build
In preparation for having multiple top-level kiwi description files,
expose the ability to define which file to read.
Additionally, tests are updated to use this new flag.
Diffstat (limited to 'tmt/plans')
| -rw-r--r-- | tmt/plans/cloud/base/build-aws.fmf | 1 | ||||
| -rw-r--r-- | tmt/plans/cloud/base/build-azure.fmf | 1 | ||||
| -rw-r--r-- | tmt/plans/cloud/base/build-gcp.fmf | 1 | ||||
| -rw-r--r-- | tmt/plans/cloud/base/build-generic.fmf | 1 | ||||
| -rw-r--r-- | tmt/plans/cloud/base/build-uefi-uki.fmf | 1 | ||||
| -rw-r--r-- | tmt/plans/container/base/build-generic-init.fmf | 1 | ||||
| -rw-r--r-- | tmt/plans/container/base/build-generic-minimal.fmf | 1 | ||||
| -rw-r--r-- | tmt/plans/container/base/build-generic.fmf | 1 | ||||
| -rw-r--r-- | tmt/plans/container/toolbox/build-toolbox.fmf | 1 | ||||
| -rw-r--r-- | tmt/plans/desktop/kde/build-desktop-disk.fmf | 1 | ||||
| -rw-r--r-- | tmt/plans/desktop/kde/build-desktop-live.fmf | 1 | ||||
| -rw-r--r-- | tmt/plans/vagrant/base/build-libvirt.fmf | 1 | ||||
| -rw-r--r-- | tmt/plans/vagrant/base/build-virtualbox.fmf | 1 |
13 files changed, 13 insertions, 0 deletions
diff --git a/tmt/plans/cloud/base/build-aws.fmf b/tmt/plans/cloud/base/build-aws.fmf index f2d2fe4..758a3a0 100644 --- a/tmt/plans/cloud/base/build-aws.fmf +++ b/tmt/plans/cloud/base/build-aws.fmf @@ -4,5 +4,6 @@ discover: environment: image_type: oem image_profile: Cloud-Base-AmazonEC2 + kiwi_file: Fedora.kiwi execute: how: tmt diff --git a/tmt/plans/cloud/base/build-azure.fmf b/tmt/plans/cloud/base/build-azure.fmf index 970ee9a..4cc66ed 100644 --- a/tmt/plans/cloud/base/build-azure.fmf +++ b/tmt/plans/cloud/base/build-azure.fmf @@ -4,5 +4,6 @@ discover: environment: image_type: oem image_profile: Cloud-Base-Azure + kiwi_file: Fedora.kiwi execute: how: tmt diff --git a/tmt/plans/cloud/base/build-gcp.fmf b/tmt/plans/cloud/base/build-gcp.fmf index abe823c..e5ed99e 100644 --- a/tmt/plans/cloud/base/build-gcp.fmf +++ b/tmt/plans/cloud/base/build-gcp.fmf @@ -4,5 +4,6 @@ discover: environment: image_type: oem image_profile: Cloud-Base-GCE + kiwi_file: Fedora.kiwi execute: how: tmt diff --git a/tmt/plans/cloud/base/build-generic.fmf b/tmt/plans/cloud/base/build-generic.fmf index 752bf11..864e137 100644 --- a/tmt/plans/cloud/base/build-generic.fmf +++ b/tmt/plans/cloud/base/build-generic.fmf @@ -4,5 +4,6 @@ discover: environment: image_type: oem image_profile: Cloud-Base-Generic + kiwi_file: Fedora.kiwi execute: how: tmt diff --git a/tmt/plans/cloud/base/build-uefi-uki.fmf b/tmt/plans/cloud/base/build-uefi-uki.fmf index dd37f00..3d1ad3c 100644 --- a/tmt/plans/cloud/base/build-uefi-uki.fmf +++ b/tmt/plans/cloud/base/build-uefi-uki.fmf @@ -4,5 +4,6 @@ discover: environment: image_type: oem image_profile: Cloud-Base-UEFI-UKI + kiwi_file: Fedora.kiwi execute: how: tmt diff --git a/tmt/plans/container/base/build-generic-init.fmf b/tmt/plans/container/base/build-generic-init.fmf index 6f17366..3a0e82a 100644 --- a/tmt/plans/container/base/build-generic-init.fmf +++ b/tmt/plans/container/base/build-generic-init.fmf @@ -4,5 +4,6 @@ discover: environment: image_type: oci image_profile: Container-Base-Generic-Init + kiwi_file: Fedora.kiwi execute: how: tmt diff --git a/tmt/plans/container/base/build-generic-minimal.fmf b/tmt/plans/container/base/build-generic-minimal.fmf index ac82294..9c192da 100644 --- a/tmt/plans/container/base/build-generic-minimal.fmf +++ b/tmt/plans/container/base/build-generic-minimal.fmf @@ -4,5 +4,6 @@ discover: environment: image_type: oci image_profile: Container-Base-Generic-Minimal + kiwi_file: Fedora.kiwi execute: how: tmt diff --git a/tmt/plans/container/base/build-generic.fmf b/tmt/plans/container/base/build-generic.fmf index 07b4eb5..c6c71db 100644 --- a/tmt/plans/container/base/build-generic.fmf +++ b/tmt/plans/container/base/build-generic.fmf @@ -4,5 +4,6 @@ discover: environment: image_type: oci image_profile: Container-Base-Generic + kiwi_file: Fedora.kiwi execute: how: tmt diff --git a/tmt/plans/container/toolbox/build-toolbox.fmf b/tmt/plans/container/toolbox/build-toolbox.fmf index b30ed97..76f0567 100644 --- a/tmt/plans/container/toolbox/build-toolbox.fmf +++ b/tmt/plans/container/toolbox/build-toolbox.fmf @@ -4,5 +4,6 @@ discover: environment: image_type: oci image_profile: Container-Toolbox + kiwi_file: Fedora.kiwi execute: how: tmt diff --git a/tmt/plans/desktop/kde/build-desktop-disk.fmf b/tmt/plans/desktop/kde/build-desktop-disk.fmf index fa3837e..11fcffb 100644 --- a/tmt/plans/desktop/kde/build-desktop-disk.fmf +++ b/tmt/plans/desktop/kde/build-desktop-disk.fmf @@ -4,5 +4,6 @@ discover: environment: image_type: oem image_profile: KDE-Desktop-Disk + kiwi_file: Fedora.kiwi execute: how: tmt diff --git a/tmt/plans/desktop/kde/build-desktop-live.fmf b/tmt/plans/desktop/kde/build-desktop-live.fmf index bdde89d..190c1e1 100644 --- a/tmt/plans/desktop/kde/build-desktop-live.fmf +++ b/tmt/plans/desktop/kde/build-desktop-live.fmf @@ -4,5 +4,6 @@ discover: environment: image_type: iso image_profile: KDE-Desktop-Live + kiwi_file: Fedora.kiwi execute: how: tmt diff --git a/tmt/plans/vagrant/base/build-libvirt.fmf b/tmt/plans/vagrant/base/build-libvirt.fmf index 8c49c19..5dc2751 100644 --- a/tmt/plans/vagrant/base/build-libvirt.fmf +++ b/tmt/plans/vagrant/base/build-libvirt.fmf @@ -4,5 +4,6 @@ discover: environment: image_type: oem image_profile: Cloud-Base-Vagrant-libvirt + kiwi_file: Fedora.kiwi execute: how: tmt diff --git a/tmt/plans/vagrant/base/build-virtualbox.fmf b/tmt/plans/vagrant/base/build-virtualbox.fmf index 9fcd97e..22878fe 100644 --- a/tmt/plans/vagrant/base/build-virtualbox.fmf +++ b/tmt/plans/vagrant/base/build-virtualbox.fmf @@ -7,5 +7,6 @@ adjust: environment: image_type: oem image_profile: Cloud-Base-Vagrant-VirtualBox + kiwi_file: Fedora.kiwi execute: how: tmt |