ium_444409/Jenkinsfile-train

23 lines
377 B
Plaintext
Raw Normal View History

2022-05-05 21:40:34 +02:00
pipeline {
agent {
docker {
image 's444409-create-dataset'
}
}
stages {
stage('Train model') {
steps {
sh "python train_model.py"
}
}
}
post {
always {
archiveArtifacts artifacts: 'model_out',
onlyIfSuccessful: true
}
}
}