Skip to content
Snippets Groups Projects
Commit c85fd821 authored by Jan Siwiec's avatar Jan Siwiec
Browse files

Merge branch 'mm-changelog' into 'master'

Mm changelog

See merge request !446
parents 38076ef6 b4c2c57b
No related branches found
No related tags found
1 merge request!446Mm changelog
Pipeline #35047 passed with warnings
...@@ -119,6 +119,20 @@ def print_hint(): ...@@ -119,6 +119,20 @@ def print_hint():
'padding-left: .2rem;"></form> | Versions | Clusters |')) 'padding-left: .2rem;"></form> | Versions | Clusters |'))
print("| ------ | -------- | -------- |") print("| ------ | -------- | -------- |")
def print_changelog():
""" print_changelog """
print('**Modules Changelog**<br>')
print('You can see the modules changelog for each supercomputer here:<br>')
print('[DGX modules changelog][1]<br>')
print('[Barbora modules changelog][2]<br>')
print('[Karolina modules changelog][3]<br>')
def print_links():
""" print_links """
print('[1]: https://code.it4i.cz/sccs/it4i-modules/-/blob/master/dgx-changelog.md')
print('[2]: https://code.it4i.cz/sccs/it4i-modules/-/blob/master/barbora-changelog.md')
print('[3]: https://code.it4i.cz/sccs/it4i-modules/-/blob/master/karolina-changelog.md')
def main(): def main():
""" """
main function main function
...@@ -130,8 +144,10 @@ def main(): ...@@ -130,8 +144,10 @@ def main():
if arg.json: if arg.json:
print(json.dumps(packages_json(software))) print(json.dumps(packages_json(software)))
else: else:
print_changelog()
print_hint() print_hint()
print_software(software) print_software(software)
print_links()
if __name__ == "__main__": if __name__ == "__main__":
main() main()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment