Marcin Kostrzewski
bdaacef8b9
All checks were successful
s444409-training/pipeline/head This commit looks good
23 lines
377 B
Plaintext
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
|
|
}
|
|
}
|
|
}
|