Skip to content

Commit 88aa0ab

Browse files
seunghun1eeAlex-Welsh
authored andcommitted
Fix TKM version mapping function
The function get_tkm_version() used for generating random multinode scenario was returning wrong versions
1 parent 32405b6 commit 88aa0ab

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/multinode-inputs.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,10 +87,10 @@ def get_branch(version: str) -> str:
8787
def get_tkm_version(version: str) -> str:
8888
if version == "zed":
8989
return "ea61ea1730e179e05e8f0e58b759267664c555e7"
90-
elif version in ["2023.1", "2024.1"]:
91-
return "stackhpc/2024.1" # This version is targeted to support Caracal or older releases
92-
else:
90+
elif version == "2025.1":
9391
return "main"
92+
else:
93+
return get_branch(version)
9494

9595

9696
def write_output(name: str, value: str) -> None:

0 commit comments

Comments
 (0)