diff --git a/Jenkinsfile b/Jenkinsfile index fa3899c..2161e85 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -56,16 +56,16 @@ pipeline { reuseNode true } } - steps { - sh 'chmod +x sacred/sacred_training_model.py' - sh 'python3 sacred/sacred_training_model.py' - } + steps { + sh 'chmod +x sacred/sacred_training_model.py' + sh 'python3 sacred/sacred_training_model.py' + } } stage('Archive Artifacts from Experiments') { steps { archiveArtifacts artifacts: 'sacred_runs/**/*.*', onlyIfSuccessful: true - } + } } } }