Fix invoking script v2
Some checks failed
s444380-training/pipeline/head There was a failure building this commit

This commit is contained in:
Kamil Guttmann 2022-05-03 15:05:26 +02:00
parent 5ce34a716e
commit e934c1bf17

View File

@ -28,7 +28,7 @@ pipeline {
stage("Train model") {
steps {
sh "chmod u+x ./train_model.py"
sh "python ./train_model.py $EPOCHS"
sh "python3 ./train_model.py $EPOCHS"
archiveArtifacts artifacts: "./model/*", onlyIfSuccessful: true
}
}