This commit is contained in:
AWieczarek 2024-06-11 20:01:27 +02:00
parent d7be18b9f6
commit 42f90164aa
1 changed files with 5 additions and 5 deletions

10
Jenkinsfile vendored
View File

@ -56,16 +56,16 @@ pipeline {
reuseNode true reuseNode true
} }
} }
steps { steps {
sh 'chmod +x sacred/sacred_training_model.py' sh 'chmod +x sacred/sacred_training_model.py'
sh 'python3 sacred/sacred_training_model.py' sh 'python3 sacred/sacred_training_model.py'
} }
} }
stage('Archive Artifacts from Experiments') { stage('Archive Artifacts from Experiments') {
steps { steps {
archiveArtifacts artifacts: 'sacred_runs/**/*.*', onlyIfSuccessful: true archiveArtifacts artifacts: 'sacred_runs/**/*.*', onlyIfSuccessful: true
} }
} }
} }
} }