From 5477546ff2bb807339f6a7058f928bfdbfccb296 Mon Sep 17 00:00:00 2001 From: "Owen W. Taylor" Date: Mon, 13 May 2024 12:52:33 -0400 Subject: [PATCH] Add Flatpak build types to the Koji web configuration This is needed to make them appear properly in dropdowns. https://pagure.io/koji-flatpak/issue/1 --- roles/koji_hub/templates/web.conf.j2 | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/roles/koji_hub/templates/web.conf.j2 b/roles/koji_hub/templates/web.conf.j2 index d4c26206d9..5b07ebbc51 100644 --- a/roles/koji_hub/templates/web.conf.j2 +++ b/roles/koji_hub/templates/web.conf.j2 @@ -32,10 +32,10 @@ loginDisabled = True KojiHubCA = /etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem {% if env == 'staging' %} -Tasks = buildContainer,createContainer,runroot,osbuildImage,createKiwiImage -ParentTasks = buildContainer,osbuildImage,kiwiBuild +Tasks = buildContainer,createContainer,flatpakBuild,flatpakBuildArch,runroot,osbuildImage,createKiwiImage +ParentTasks = buildContainer,flatpakBuild,osbuildImage,kiwiBuild {% else %} -Tasks = buildContainer,createContainer,runroot,osbuildImage,createKiwiImage -ParentTasks = buildContainer,osbuildImage,kiwiBuild +Tasks = buildContainer,createContainer,flatpakBuild,flatpakBuildArch,runroot,osbuildImage,createKiwiImage +ParentTasks = buildContainer,flatpakBuild,osbuildImage,kiwiBuild {% endif %} -ToplevelTasks = osbuildImage +ToplevelTasks = flatpakBuild,osbuildImage