2021-06-04 17:40:55 +02:00
|
|
|
pipeline {
|
|
|
|
agent {dockerfile true}
|
|
|
|
|
|
|
|
|
|
|
|
stages {
|
|
|
|
stage('Copy Archive') {
|
|
|
|
steps {
|
|
|
|
script {
|
|
|
|
step ([$class: 'CopyArtifact',
|
2021-06-04 17:46:29 +02:00
|
|
|
projectName: 's430705-training/master',
|
2021-06-04 18:02:03 +02:00
|
|
|
target: 'prediction_data'])
|
2021-06-04 17:40:55 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('Predict example value'){
|
|
|
|
steps {
|
2021-06-04 18:21:53 +02:00
|
|
|
sh 'python ./predict/predict.py'
|
2021-06-04 17:40:55 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|