fix branch param 2
Some checks failed
s464980-evaluation/pipeline/head There was a failure building this commit

This commit is contained in:
Sheaza 2024-05-14 22:55:37 +02:00
parent 6ce7521fa6
commit 9d19402d5d

View File

@ -17,7 +17,7 @@ pipeline {
stage('Copy artifacts') { stage('Copy artifacts') {
steps { steps {
copyArtifacts fingerprintArtifacts: true, projectName: 'z-s464980-create-dataset', selector: buildParameter('BUILD_SELECTOR') copyArtifacts fingerprintArtifacts: true, projectName: 'z-s464980-create-dataset', selector: buildParameter('BUILD_SELECTOR')
copyArtifacts fingerprintArtifacts: true, projectName: 's464980-training/${params.BRANCH}', selector: buildParameter('BUILD_SELECTOR') copyArtifacts fingerprintArtifacts: true, projectName: 's464980-training/"${params.BRANCH}"', selector: buildParameter('BUILD_SELECTOR')
copyArtifacts fingerprintArtifacts: true, projectName: 's464980-evaluation/"${params.BRANCH}"', selector: buildParameter('BUILD_SELECTOR'), optional: true copyArtifacts fingerprintArtifacts: true, projectName: 's464980-evaluation/"${params.BRANCH}"', selector: buildParameter('BUILD_SELECTOR'), optional: true
} }
} }