Skip to content

Commit

Permalink
feat(config): new reana-demo-agc-cms-ttbar-coffea example (#792)
Browse files Browse the repository at this point in the history
  • Loading branch information
tiborsimko committed Jul 3, 2024
1 parent 19ce68e commit aff5c8f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 10 deletions.
11 changes: 4 additions & 7 deletions reana/config.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
#
# This file is part of REANA.
# Copyright (C) 2020, 2021, 2022, 2023 CERN.
# Copyright (C) 2020, 2021, 2022, 2023, 2024 CERN.
#
# REANA is free software; you can redistribute it and/or modify it
# under the terms of the MIT License; see LICENSE file for more details.
Expand All @@ -24,7 +24,8 @@
]
"""All git repositories containing REANA runnable demos."""

REANA_LIST_DEMO_ALL = REPO_LIST_DEMO_RUNNABLE + [
REPO_LIST_DEMO_ALL = REPO_LIST_DEMO_RUNNABLE + [
"reana-demo-agc-cms-ttbar-coffea",
"reana-demo-cdci-crab-pulsar-integral-verification",
"reana-demo-cdci-integral-data-reduction",
"reana-demo-cms-reco",
Expand All @@ -46,10 +47,6 @@
"reana-client-go",
"reana-commons",
"reana-db",
"reana-demo-cdci-crab-pulsar-integral-verification",
"reana-demo-cdci-integral-data-reduction",
"reana-demo-cms-reco",
"reana-demo-lhcb-d2pimumu",
"reana-env-aliphysics",
"reana-env-jupyter",
"reana-env-root6",
Expand All @@ -65,7 +62,7 @@
"reana-workflow-engine-yadage",
"reana-workflow-engine-snakemake",
"www.reana.io",
] + REPO_LIST_DEMO_RUNNABLE
] + REPO_LIST_DEMO_ALL
"""All REANA git repositories."""

REPO_LIST_CLIENT = [
Expand Down
6 changes: 3 additions & 3 deletions reana/reana_dev/wiki.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
#
# This file is part of REANA.
# Copyright (C) 2020, 2021, 2022 CERN.
# Copyright (C) 2020, 2021, 2022, 2024 CERN.
#
# REANA is free software; you can redistribute it and/or modify it
# under the terms of the MIT License; see LICENSE file for more details.
Expand All @@ -14,7 +14,7 @@
CODECOV_REANAHUB_URL,
GIT_SUPPORTED_MAINT_BRANCHES,
GITHUB_REANAHUB_URL,
REANA_LIST_DEMO_ALL,
REPO_LIST_DEMO_ALL,
)


Expand Down Expand Up @@ -83,7 +83,7 @@ def create_build_status_page():
"simple": True,
"title": "Examples",
"description": "Selected reusable analysis examples.",
"packages": {demo: {} for demo in sorted(REANA_LIST_DEMO_ALL)},
"packages": {demo: {} for demo in sorted(REPO_LIST_DEMO_ALL)},
},
}

Expand Down

0 comments on commit aff5c8f

Please sign in to comment.