Skip to content

Commit

Permalink
fix Nim v2 builds by checking for correct job name (#6218)
Browse files Browse the repository at this point in the history
Since job folder structure has been changed we don't need the dash.

Signed-off-by: Jakub Sokołowski <jakub@status.im>
  • Loading branch information
jakubgs authored Apr 18, 2024
1 parent e4b0e24 commit 80edebf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -165,5 +165,5 @@ def getAgentLabel() {
}

def nimCommitForJob() {
return JOB_NAME.contains('-nimv2/') ? 'upstream/version-2-0' : ''
return JOB_NAME.contains('nimv2') ? 'upstream/version-2-0' : ''
}

0 comments on commit 80edebf

Please sign in to comment.