mirror of
https://github.com/YunoHost/tartiflette.git
synced 2024-09-03 20:06:08 +02:00
Add buster
This commit is contained in:
parent
102ba92d74
commit
e636b73c1e
2 changed files with 9 additions and 0 deletions
|
@ -47,6 +47,13 @@ class AppCIBranch(db.Model):
|
||||||
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.json',
|
||||||
url_per_app='https://ci-apps-unstable.yunohost.org/ci/apps/{}/')
|
url_per_app='https://ci-apps-unstable.yunohost.org/ci/apps/{}/')
|
||||||
|
|
||||||
|
yield AppCIBranch(name='buster',
|
||||||
|
arch="x86",
|
||||||
|
branch="buster",
|
||||||
|
display_name='buster (x86)',
|
||||||
|
url='https://ci-stretch.nohost.me/ci/logs/list_level_stable.json',
|
||||||
|
url_per_app='https://ci-stretch.nohost.me/ci/apps/{}/')
|
||||||
|
|
||||||
def last_build_url(self, app):
|
def last_build_url(self, app):
|
||||||
return self.url_per_app.format(app.name)
|
return self.url_per_app.format(app.name)
|
||||||
|
|
||||||
|
|
|
@ -35,11 +35,13 @@
|
||||||
<a class="dropdown-item" href="{{ url_for('main.appci_branch', branch="testing")}}">Testing</a>
|
<a class="dropdown-item" href="{{ url_for('main.appci_branch', branch="testing")}}">Testing</a>
|
||||||
<a class="dropdown-item" href="{{ url_for('main.appci_branch', branch="unstable")}}">Unstable</a>
|
<a class="dropdown-item" href="{{ url_for('main.appci_branch', branch="unstable")}}">Unstable</a>
|
||||||
<a class="dropdown-item" href="{{ url_for('main.appci_branch', branch="arm")}}">ARM</a>
|
<a class="dropdown-item" href="{{ url_for('main.appci_branch', branch="arm")}}">ARM</a>
|
||||||
|
<a class="dropdown-item" href="{{ url_for('main.appci_branch', branch="buster")}}">Buster</a>
|
||||||
<div class="dropdown-divider"></div>
|
<div class="dropdown-divider"></div>
|
||||||
<span class="dropdown-header">Branch comparisons</span>
|
<span class="dropdown-header">Branch comparisons</span>
|
||||||
<a class="dropdown-item" href="{{ url_for('main.appci_compare', ref="stable", target="testing")}}">Stable vs. Testing</a>
|
<a class="dropdown-item" href="{{ url_for('main.appci_compare', ref="stable", target="testing")}}">Stable vs. Testing</a>
|
||||||
<a class="dropdown-item" href="{{ url_for('main.appci_compare', ref="stable", target="unstable")}}">Stable vs. Unstable</a>
|
<a class="dropdown-item" href="{{ url_for('main.appci_compare', ref="stable", target="unstable")}}">Stable vs. Unstable</a>
|
||||||
<a class="dropdown-item" href="{{ url_for('main.appci_compare', ref="stable", target="arm")}}">Stable vs. ARM</a>
|
<a class="dropdown-item" href="{{ url_for('main.appci_compare', ref="stable", target="arm")}}">Stable vs. ARM</a>
|
||||||
|
<a class="dropdown-item" href="{{ url_for('main.appci_compare', ref="stable", target="buster")}}">Stable vs. Buster</a>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
<li class="nav-item dropdown">
|
<li class="nav-item dropdown">
|
||||||
|
|
Loading…
Reference in a new issue