Fix param name
Some checks failed
s434704-training/pipeline/head This commit looks good
s434704-evaluation/pipeline/head There was a failure building this commit

This commit is contained in:
Wojciech Jarmosz 2021-05-14 23:03:19 +02:00
parent 142d8c472c
commit bb2cfd734f

View File

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