fix Nim v2 builds by checking for correct job name (#6218)

Since job folder structure has been changed we don't need the dash.

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2024-04-18 17:08:44 +02:00 committed by GitHub
parent e4b0e24614
commit 80edebfd20
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

2
ci/Jenkinsfile vendored
View File

@ -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' : ''
}