From fa923304b01f522db70e791a6aca66f45a94291b Mon Sep 17 00:00:00 2001 From: Kayou Date: Wed, 17 Mar 2021 20:32:22 +0100 Subject: [PATCH] fix json url --- app/models/appci.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/models/appci.py b/app/models/appci.py index 4d01239..b5ffc21 100644 --- a/app/models/appci.py +++ b/app/models/appci.py @@ -23,28 +23,28 @@ class AppCIBranch(db.Model): arch="x86", branch="stable", display_name='Stable (x86)', - url='https://ci-apps.yunohost.org/ci/logs/list_level_stable.json', + url='https://ci-apps.yunohost.org/ci/logs/list_level_stable_amd64.json', url_per_app='https://ci-apps.yunohost.org/ci/apps/{}/') yield AppCIBranch(name='arm', arch="arm", branch="stable", display_name='Stable (ARM)', - url='https://ci-apps-arm.yunohost.org/ci/logs/list_level_stable.json', + url='https://ci-apps-arm.yunohost.org/ci/logs/list_level_stable_armhf.json', url_per_app='https://ci-apps-arm.yunohost.org/ci/apps/{}/') yield AppCIBranch(name='testing', arch="x86", branch="testing", display_name='Testing (x86)', - url='https://ci-apps-unstable.yunohost.org/ci/logs/list_level_testing.json', + url='https://ci-apps-unstable.yunohost.org/ci/logs/list_level_testing_amd64.json', url_per_app='https://ci-apps-unstable.yunohost.org/ci/apps/{}/') yield AppCIBranch(name='unstable', arch="x86", branch="unstable", display_name='Unstable (x86)', - url='https://ci-apps-unstable.yunohost.org/ci/logs/list_level_unstable.json', + url='https://ci-apps-unstable.yunohost.org/ci/logs/list_level_unstable_amd64.json', url_per_app='https://ci-apps-unstable.yunohost.org/ci/apps/{}/') def last_build_url(self, app):