ium_444356/Jenkinsfile_predict
Maciej Czajka 540be748a5
Some checks are pending
s444356-training/pipeline/head Build queued...
s444356-evaluation/pipeline/head This commit looks good
update jenkinsfile_predict, predict.py
2022-05-11 21:16:05 +02:00

29 lines
723 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: '{"inputs": [1000.0]}',
description: 'Input file',
name: 'INPUT',
trim: false
)
}
stages {
stage('Script') {
steps {
copyArtifacts projectName: 's444409-training/main', selector: buildParameter('BUILD_SELECTOR')
sh 'echo ${params.INPUT} > input_example.json'
sh 'python3 ./predict.py $INPUT'
}
}
}
}