From 54465d7a43b5eb5240c65a4fc1e2ec40b29496b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20Kone=C4=8Dn=C3=BD?= Date: Thu, 26 Jan 2023 13:26:37 +0100 Subject: [PATCH] [release-monitoring] Sync buildconfig between staging and prod MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit With release of Anitya 1.7.0 the special cases for production are no longer needed. Let's remove them. Signed-off-by: Michal Konečný --- .../release-monitoring/templates/buildconfig.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/roles/openshift-apps/release-monitoring/templates/buildconfig.yml b/roles/openshift-apps/release-monitoring/templates/buildconfig.yml index e5ad52b1c9..2ece95a5cc 100644 --- a/roles/openshift-apps/release-monitoring/templates/buildconfig.yml +++ b/roles/openshift-apps/release-monitoring/templates/buildconfig.yml @@ -21,9 +21,7 @@ items: httpd \ graphviz \ fedora-messaging \ -{% if env == 'staging' %} npm \ -{% endif %} poetry \ python3-alembic \ python3-beautifulsoup4 \ @@ -70,16 +68,10 @@ items: popd && \ # Uninstall the existing anitya installation first pip-3 uninstall -y anitya && \ -{% if env == 'staging' %} # Install javascript dependencies pushd anitya/static && \ npm install && \ popd && \ -{% else %} - # Move bootstrap to correct folder - rm -f anitya/static/bootstrap && \ - mv anitya/static/bootstrap-3.3.4-fedora anitya/static/bootstrap && \ -{% endif %} poetry build && \ pip-3 install dist/*.whl && \ popd && \