ium_s434700/predict/Jenkinsfile
Filip Izydorczyk 6a33d840db predict update
2021-06-08 18:22:51 +02:00

21 lines
464 B
Groovy

pipeline {
agent {dockerfile true}
stages {
stage('Copy Archive') {
steps {
script {
step ([$class: 'CopyArtifact',
projectName: 's430705-training/master',
target: 'prediction_data'])
}
}
}
stage('Predict example value'){
steps {
sh 'python ./predict/predict.py'
}
}
}
}