Skip to content

Commit

Permalink
Merge pull request #2400 from ggardet/dashboard_arm_link
Browse files Browse the repository at this point in the history
Dashboard:fix openQA links
  • Loading branch information
coolo committed Feb 3, 2020
2 parents e3c26df + 0cdee97 commit 8d42156
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions dashboard/generate.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,10 +161,10 @@ def openqa_summary(self):
fetcher.add('openSUSE:Factory:Live', nick='Live')
fetcher.add('openSUSE:Factory:Rings:0-Bootstrap', nick='Ring 0')
fetcher.add('openSUSE:Factory:Rings:1-MinimalX', nick='Ring 1')
fetcher.add('openSUSE:Factory:ARM', nick='ARM', download_url='http://download.opensuse.org/ports/aarch64/tumbleweed/iso/', openqa_groupid=3)
fetcher.add('openSUSE:Factory:ARM', nick='ARM', download_url='http://download.opensuse.org/ports/aarch64/tumbleweed/iso/', openqa_group='openSUSE Tumbleweed AArch64', openqa_version='Tumbleweed', openqa_groupid=3)
fetcher.add('openSUSE:Factory:ARM:Live', nick='ARM Live')
fetcher.add('openSUSE:Factory:PowerPC', nick='Power', download_url='http://download.opensuse.org/ports/ppc/tumbleweed/iso/', openqa_groupid=4)
fetcher.add('openSUSE:Factory:zSystems', nick='System Z', download_url='http://download.opensuse.org/ports/zsystems/tumbleweed/iso/', openqa_groupid=34)
fetcher.add('openSUSE:Factory:PowerPC', nick='Power', download_url='http://download.opensuse.org/ports/ppc/tumbleweed/iso/', openqa_group='openSUSE Tumbleweed PowerPC', openqa_version='Tumbleweed', openqa_groupid=4)
fetcher.add('openSUSE:Factory:zSystems', nick='System Z', download_url='http://download.opensuse.org/ports/zsystems/tumbleweed/iso/', openqa_group='openSUSE Tumbleweed s390x', openqa_version='Tumbleweed', openqa_groupid=34)
fetcher.add('openSUSE:Factory:RISCV', nick='Risc V', download_url='http://download.opensuse.org/ports/riscv/tumbleweed/iso/')

with app.app_context():
Expand Down
2 changes: 1 addition & 1 deletion dashboard/templates/dashboard.html
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
{% set ttm_testing = project.ttm_status.get('testing') %}
{% if ttm_testing %}
{% if project.openqa_version %}
<a href='https://openqa.opensuse.org/tests/overview?distri=opensuse&version={{ project.openqa_version }}'>{{ ttm_testing }}</a>
<a href='https://openqa.opensuse.org/tests/overview?version={{ project.openqa_version }}&groupid={{ project.openqa_id }}'>{{ ttm_testing }}</a>
{% else %}
{{ ttm_testing }}
{% endif %}
Expand Down

0 comments on commit 8d42156

Please sign in to comment.