Fix evaluation

This commit is contained in:
PawelDopierala 2024-05-15 00:12:05 +02:00
parent 9a9e61e97e
commit 24415420c5

View File

@ -38,9 +38,9 @@ pipeline {
} }
stage('CopyArtifacts') { stage('CopyArtifacts') {
steps { steps {
copyArtifacts fingerprintArtifacts: true, projectName: 'z-s495719-create-dataset', selector: buildParameter('BUILD_SELECTOR') copyArtifacts fingerprintArtifacts: true, projectName: 'z-s495719-create-dataset', selector: buildParameter('BUILD_SELECTOR_MAIN')
copyArtifacts fingerprintArtifacts: true, projectName: 's495719-training/' + params.TRAINING_BRANCH, selector: buildParameter('BUILD_SELECTOR') copyArtifacts fingerprintArtifacts: true, projectName: 's495719-training/' + params.TRAINING_BRANCH, selector: buildParameter('BUILD_SELECTOR_MAIN')
copyArtifacts fingerprintArtifacts: true, projectName: 's495719-evaluation/main', selector: buildParameter('BUILD_SELECTOR'), optional: true copyArtifacts fingerprintArtifacts: true, projectName: 's495719-evaluation/main', selector: buildParameter('BUILD_SELECTOR_TRAINING'), optional: true
} }
} }
stage('Script') { stage('Script') {