ium_s434700/predict/Jenkinsfile
2021-06-04 18:20:25 +02:00

24 lines
585 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 'ls -l'
sh 'ls -l ./prediction_data'
sh 'ls -l ./prediction_data/movies_imdb'
sh 'python ./predict.py'
}
}
}
}