ium_s434700/predict-registry/Jenkinsfile

25 lines
559 B
Plaintext
Raw Permalink Normal View History

2021-06-08 18:32:35 +02:00
pipeline {
2021-06-08 18:56:11 +02:00
agent {
dockerfile {
args '-v /mlruns:/mlruns -v /tmp/mlruns:/tmp/mlruns'
}
}
2021-06-08 18:32:35 +02:00
stages {
stage('Copy Archive') {
steps {
script {
step ([$class: 'CopyArtifact',
projectName: 's430705-training/master',
target: 'prediction_data'])
}
}
}
stage('Predict example value'){
steps {
2021-06-08 18:34:41 +02:00
sh "python ./predict-registry/predict.py"
2021-06-08 18:32:35 +02:00
}
}
}
}