28 lines
677 B
Plaintext
28 lines
677 B
Plaintext
pipeline {
|
|
agent {
|
|
docker {
|
|
image 'maciejczajka'
|
|
}
|
|
}
|
|
parameters {
|
|
buildSelector(
|
|
defaultSelector: lastSuccessful(),
|
|
description: 'Which build to use for copying artifacts for predict',
|
|
name: 'BUILD_SELECTOR')
|
|
string(
|
|
defaultValue: 'input_example.json',
|
|
description: 'Input file name',
|
|
name: 'INPUT',
|
|
trim: false
|
|
)
|
|
}
|
|
|
|
stages {
|
|
stage('Script') {
|
|
steps {
|
|
copyArtifacts projectName: 's444409-training/main', selector: buildParameter('BUILD_SELECTOR')
|
|
sh 'python3 ./predict.py $INPUT'
|
|
}
|
|
}
|
|
}
|
|
} |