ium_444356/Jenkinsfile_predict

24 lines
485 B
Plaintext
Raw Normal View History

pipeline {
agent {
2022-05-11 18:56:36 +02:00
docker {
image 'maciejczajka'
}
}
2022-05-11 19:33:00 +02:00
parameters {
string(
defaultValue: 'input_example.json',
description: 'Input file name',
name: 'INPUT',
trim: false
)
}
stages {
stage('Script') {
steps {
2022-05-11 19:02:01 +02:00
copyArtifacts projectName: 's444409-training/main', selector: lastSuccessful()
2022-05-11 19:33:00 +02:00
sh "python predict.py $INPUT"
}
}
}
}