Skip to content

Commit dd88393

Browse files
committed
Fix job name determination in .build/run-ci for trunk case
patch by Stefan Miklosovic; reviewed by Michael Semb Wever for CASSANDRA-20874
1 parent c5d6a36 commit dd88393

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.build/run-ci

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def determine_job_name(cassandra_dir: Path) -> str:
7777
version = line.split('value="')[1].split('"')[0]
7878
if version.startswith("5.0."):
7979
return "cassandra-5.0"
80-
return "trunk"
80+
return "cassandra"
8181

8282
def get_current_branch() -> str:
8383
"""Returns the current branch."""

0 commit comments

Comments
 (0)