Fix job name determination in .build/run-ci for trunk case

patch by Stefan Miklosovic; reviewed by Michael Semb Wever for CASSANDRA-20874
This commit is contained in:
Stefan Miklosovic 2025-09-01 10:21:24 +02:00
parent c5d6a36fa7
commit dd8839320f
No known key found for this signature in database
GPG Key ID: 32F35CB2F546D93E
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ def determine_job_name(cassandra_dir: Path) -> str:
version = line.split('value="')[1].split('"')[0]
if version.startswith("5.0."):
return "cassandra-5.0"
return "trunk"
return "cassandra"
def get_current_branch() -> str:
"""Returns the current branch."""