ium_444356/Jenkinsfile_predict

29 lines
723 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 {
buildSelector(
defaultSelector: lastSuccessful(),
description: 'Which build to use for copying artifacts for predict',
name: 'BUILD_SELECTOR')
2022-05-11 19:33:00 +02:00
string(
2022-05-11 21:16:05 +02:00
defaultValue: '{"inputs": [1000.0]}',
description: 'Input file',
2022-05-11 19:33:00 +02:00
name: 'INPUT',
trim: false
)
}
stages {
stage('Script') {
steps {
copyArtifacts projectName: 's444409-training/main', selector: buildParameter('BUILD_SELECTOR')
2022-05-11 21:17:12 +02:00
sh "echo ${params.INPUT} > input_example.json"
2022-05-11 19:34:54 +02:00
sh 'python3 ./predict.py $INPUT'
}
}
}
}