From 53911202702dc887ab7fbfeffc743695c1844dc7 Mon Sep 17 00:00:00 2001 From: Adam Wojdyla Date: Mon, 16 May 2022 09:40:16 +0200 Subject: [PATCH] Update jenkinsfile training dont copy artifacts --- Jenkinsfile_training | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Jenkinsfile_training b/Jenkinsfile_training index fdf7b4a..2ca08ef 100644 --- a/Jenkinsfile_training +++ b/Jenkinsfile_training @@ -17,11 +17,7 @@ pipeline { stage('Run mlflow script and save artifacts') { steps { sh "python3 lab08_deepLearining_mlflow.py $epoch" - archiveArtifacts artifacts: 'CarPrices_pytorch_model.pkl' - archiveArtifacts artifacts: 'mlruns/**' - archiveArtifacts artifacts: 'my_model/**' - sh 'rm -r mlruns' - sh 'rm -r my_model' + } } }