diff options
| author | 2023-12-20 07:55:40 -0500 | |
|---|---|---|
| committer | 2023-12-20 07:55:40 -0500 | |
| commit | b5003bffbed2c4c6753440bc07fea515b5327f83 (patch) | |
| tree | 2cbb029cd97812da8dc49a445196b265b33e85c9 /tmt/plans | |
| parent | 724d3376e77d4c999021d091bcd2a483129cf461 (diff) | |
| download | kiwi-descriptions-b5003bffbed2c4c6753440bc07fea515b5327f83.tar.gz kiwi-descriptions-b5003bffbed2c4c6753440bc07fea515b5327f83.zip | |
Add Zuul CI configuration
This allows us to have pull requests tested before we review changes
to merge.
Diffstat (limited to 'tmt/plans')
| -rw-r--r-- | tmt/plans/build-aws.fmf | 8 | ||||
| -rw-r--r-- | tmt/plans/build-azure.fmf | 8 | ||||
| -rw-r--r-- | tmt/plans/build-gcp.fmf | 8 | ||||
| -rw-r--r-- | tmt/plans/build-openstack.fmf | 8 | ||||
| -rw-r--r-- | tmt/plans/build-vagrant-libvirt.fmf | 8 | ||||
| -rw-r--r-- | tmt/plans/build-vagrant-virtualbox.fmf | 11 |
6 files changed, 51 insertions, 0 deletions
diff --git a/tmt/plans/build-aws.fmf b/tmt/plans/build-aws.fmf new file mode 100644 index 0000000..7f6a327 --- /dev/null +++ b/tmt/plans/build-aws.fmf @@ -0,0 +1,8 @@ +summary: Build AWS EC2 image +discover: + how: fmf +environment: + image_type: oem + image_profile: Cloud-AmazonEC2 +execute: + how: tmt diff --git a/tmt/plans/build-azure.fmf b/tmt/plans/build-azure.fmf new file mode 100644 index 0000000..6b43b63 --- /dev/null +++ b/tmt/plans/build-azure.fmf @@ -0,0 +1,8 @@ +summary: Build Azure image +discover: + how: fmf +environment: + image_type: oem + image_profile: Cloud-Azure +execute: + how: tmt diff --git a/tmt/plans/build-gcp.fmf b/tmt/plans/build-gcp.fmf new file mode 100644 index 0000000..f5945da --- /dev/null +++ b/tmt/plans/build-gcp.fmf @@ -0,0 +1,8 @@ +summary: Build GCP image +discover: + how: fmf +environment: + image_type: oem + image_profile: Cloud-GCE +execute: + how: tmt diff --git a/tmt/plans/build-openstack.fmf b/tmt/plans/build-openstack.fmf new file mode 100644 index 0000000..3f0eb22 --- /dev/null +++ b/tmt/plans/build-openstack.fmf @@ -0,0 +1,8 @@ +summary: Build OpenStack image +discover: + how: fmf +environment: + image_type: oem + image_profile: Cloud-OpenStack +execute: + how: tmt diff --git a/tmt/plans/build-vagrant-libvirt.fmf b/tmt/plans/build-vagrant-libvirt.fmf new file mode 100644 index 0000000..7240ed1 --- /dev/null +++ b/tmt/plans/build-vagrant-libvirt.fmf @@ -0,0 +1,8 @@ +summary: Build Vagrant image for libvirt +discover: + how: fmf +environment: + image_type: oem + image_profile: Vagrant-libvirt +execute: + how: tmt diff --git a/tmt/plans/build-vagrant-virtualbox.fmf b/tmt/plans/build-vagrant-virtualbox.fmf new file mode 100644 index 0000000..d850aa8 --- /dev/null +++ b/tmt/plans/build-vagrant-virtualbox.fmf @@ -0,0 +1,11 @@ +summary: Build Vagrant image for VirtualBox +discover: + how: fmf +adjust: + enabled: false + when: arch != x86_64 +environment: + image_type: oem + image_profile: Vagrant-VirtualBox +execute: + how: tmt |