From d26cb9aab25ee4fe076a416d4ab24add134c945e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Kalu=C5=BEa?= Date: Thu, 22 Feb 2018 08:54:52 +0000 Subject: [PATCH] Enable i686 arch for staging MBS, so we can test multilib on staging. --- roles/mbs/common/templates/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/mbs/common/templates/config.py b/roles/mbs/common/templates/config.py index 97a909739e..698e4ea9f1 100644 --- a/roles/mbs/common/templates/config.py +++ b/roles/mbs/common/templates/config.py @@ -134,7 +134,7 @@ class ProdConfiguration(BaseConfiguration): KOJI_CONFIG = path.join(confdir, 'koji.conf') {% if env == 'staging' %} KOJI_PROFILE = 'staging' - KOJI_ARCHES = ['x86_64'] + KOJI_ARCHES = ['x86_64', 'i686'] KOJI_REPOSITORY_URL = 'http://kojipkgs.stg.fedoraproject.org/repos' MESSAGING_TOPIC_PREFIX = ['org.fedoraproject.stg'] PDC_URL = 'https://pdc.stg.fedoraproject.org/rest_api/v1'