This commit is contained in:
s444501 2022-05-13 02:45:31 +02:00
parent 0f5edfcc26
commit dd0637be28

View File

@ -26,7 +26,9 @@ pipeline {
}
stage('Prediction') {
steps {
sh 'echo ${params.INPUT} > input_example.json'
withEnv(["INPUT=${params.INPUT}"]) {
sh 'echo $INPUT > input_example.json'
}
sh 'python s444356.py'
}
}