mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-04-24 02:20:51 +08:00
37 lines
1.3 KiB
Python
37 lines
1.3 KiB
Python
# Global list of koji tags we care about
|
|
tags = ({'name': 'Rawhide', 'tag': 'f26'},
|
|
|
|
{'name': 'Fedora 25', 'tag': 'f25:updates'},
|
|
{'name': 'Fedora 25', 'tag': 'f25'},
|
|
{'name': 'Fedora 25 Testing', 'tag': 'f25-updates-testing'},
|
|
|
|
{'name': 'Fedora 24', 'tag': 'f24:updates'},
|
|
{'name': 'Fedora 24', 'tag': 'f24'},
|
|
{'name': 'Fedora 24 Testing', 'tag': 'f24-updates-testing'},
|
|
|
|
{'name': 'Fedora 23', 'tag': 'f23:updates'},
|
|
{'name': 'Fedora 23', 'tag': 'f23'},
|
|
{'name': 'Fedora 23 Testing', 'tag': 'f23-updates-testing'},
|
|
|
|
{'name': 'Fedora 22', 'tag': 'f22-updates'},
|
|
{'name': 'Fedora 22', 'tag': 'f22'},
|
|
{'name': 'Fedora 22 Testing', 'tag': 'f22-updates-testing'},
|
|
|
|
{'name': 'Fedora 21', 'tag': 'f21-updates'},
|
|
{'name': 'Fedora 21', 'tag': 'f21'},
|
|
{'name': 'Fedora 21 Testing', 'tag': 'f21-updates-testing'},
|
|
|
|
{'name': 'EPEL 7', 'tag': 'epel7'},
|
|
{'name': 'EPEL 7 Testing', 'tag': 'epel7-testing'},
|
|
|
|
{'name': 'EPEL 6', 'tag': 'dist-6E-epel'},
|
|
{'name': 'EPEL 6 Testing', 'tag': 'dist-6E-epel-testing'},
|
|
|
|
{'name': 'EPEL 5', 'tag': 'dist-5E-epel'},
|
|
{'name': 'EPEL 5 Testing', 'tag': 'dist-5E-epel-testing'},
|
|
)
|
|
|
|
tags_to_name_map = {}
|
|
for t in tags:
|
|
tags_to_name_map[t['tag']] = t['name']
|