diff --git a/app/models/appci.py b/app/models/appci.py index 10c2dfa..60a822e 100644 --- a/app/models/appci.py +++ b/app/models/appci.py @@ -33,6 +33,13 @@ class AppCIBranch(db.Model): url='https://ci-apps-arm.yunohost.org/ci/logs/list_level_stable.json', url_per_app='https://ci-apps-arm.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_per_app='https://ci-apps-unstable.yunohost.org/ci/apps/{}/') + def last_build_url(self, app): return self.url_per_app.format(app.name) diff --git a/app/templates/base.html b/app/templates/base.html index bc4a347..dfca194 100644 --- a/app/templates/base.html +++ b/app/templates/base.html @@ -32,13 +32,13 @@