ium_444409/Jenkinsfile-predict-s444356

21 lines
462 B
Plaintext
Raw Normal View History

2022-05-11 18:19:02 +02:00
pipeline {
agent {
docker {
image 's444409-create-dataset'
}
}
stages {
stage('Get dataset from artifact') {
steps {
copyArtifacts projectName: 's444356-training/master', selector: lastSuccessful()
}
}
stage('Predict values using model from artifact') {
steps {
sh "python predict_s444356.py"
}
}
}
}