Use build selector
All checks were successful
s444409-evaluation/pipeline/head This commit looks good

This commit is contained in:
Marcin Kostrzewski 2022-05-11 20:30:33 +02:00
parent 8874950fa6
commit ad21010147

View File

@ -6,12 +6,17 @@ pipeline {
}
parameters {
file 'input_example.json'
buildSelector(
defaultSelector: lastSuccessful(),
description: 'Which build to use for copying artifacts',
name: 'BUILD_SELECTOR'
)
}
stages {
stage('Get dataset from artifact') {
steps {
copyArtifacts projectName: 's444356-training/master', selector: lastSuccessful()
copyArtifacts projectName: 's444356-training/master', selector: buildParameter('BUILD_SELECTOR')
}
}
stage('Predict values using model from artifact') {