build selectors corrected
This commit is contained in:
parent
298d134b46
commit
8eb7003ce7
@ -4,20 +4,20 @@ pipeline {
|
||||
parameters {
|
||||
buildSelector(
|
||||
defaultSelector: lastSuccessful(),
|
||||
description: 'Which build to use for copying artifacts',
|
||||
name: 'BUILD_SELECTOR'
|
||||
description: 'Which build to use for copying data artifacts',
|
||||
name: 'BUILD_SELECTOR_DATASET'
|
||||
)
|
||||
|
||||
buildSelector(
|
||||
defaultSelector: lastSuccessful(),
|
||||
description: 'Which build to use for copying artifacts',
|
||||
name: 'BUILD_SELECTOR_DATASET'
|
||||
description: 'Which build to use for copying training artifacts',
|
||||
name: 'BUILD_SELECTOR_TRAINING'
|
||||
)
|
||||
|
||||
buildSelector(
|
||||
defaultSelector: lastSuccessful(),
|
||||
description: 'Which build to use for copying artifacts',
|
||||
name: 'BUILD_SELECTOR_TRAINING'
|
||||
description: 'Which build to use for copying evaluation artifacts',
|
||||
name: 'BUILD_SELECTOR_EVALUATION'
|
||||
)
|
||||
}
|
||||
|
||||
@ -26,8 +26,9 @@ pipeline {
|
||||
{
|
||||
steps
|
||||
{
|
||||
copyArtifacts(fingerprintArtifacts: true, projectName: 's434742-create-dataset', selector: buildParameter('WHICH_BUILD_DATASET'))
|
||||
copyArtifacts(fingerprintArtifacts: true, projectName: 's434742-training', selector: buildParameter('WHICH_BUILD_TRAINING'))
|
||||
copyArtifacts(fingerprintArtifacts: true, projectName: 's434742-create-dataset', selector: buildParameter('BUILD_SELECTOR_DATASET'))
|
||||
copyArtifacts(fingerprintArtifacts: true, projectName: 's434742-training', selector: buildParameter('BUILD_SELECTOR_TRAINING'))
|
||||
copyArtifacts(fingerprintArtifacts: true, projectName: 's434742-evaluation', selector: buildParameter('BUILD_SELECTOR_EVALUATION'))
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user