ium_444409/Jenkinsfile-train
Marcin Kostrzewski bdaacef8b9
All checks were successful
s444409-training/pipeline/head This commit looks good
Split container build and execution
2022-05-05 21:43:00 +02:00

23 lines
377 B
Plaintext

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
}
}
}