From 2258aa3ac82102d42759312f2352ad7f3cf361bb Mon Sep 17 00:00:00 2001 From: Jan Kaluza Date: Feb 22 2019 12:25:13 +0000 Subject: Include all modules in modular Koji tag in compose. There was Pungi change when generating compose with modules from modular Koji tag. To include all the modules which are in a tag, we now need to use wildcard sign. It is also possible to cherry-pick some modules from the modular Koji tag, but our API currently does not support that. --- diff --git a/server/odcs/server/pungi.py b/server/odcs/server/pungi.py index 77c9ad4..c2e1b41 100644 --- a/server/odcs/server/pungi.py +++ b/server/odcs/server/pungi.py @@ -248,6 +248,8 @@ class PungiConfig(BasePungiConfig): elif self.source_type == PungiSourceType.KOJI_TAG: if self.packages: tmp_variant.add_group(comps.Group('odcs-group', 'odcs-group', 'ODCS compose default group')) + if self.koji_module_tags: + tmp_variant.add_module(comps.Module("*")) odcs_product.add_variant(tmp_variant)