Update jenkinsfile training dont copy artifacts
All checks were successful
s444507-predict-s444356/pipeline/head This commit looks good
s444507-evaluation/pipeline/head This commit looks good
444507-training/pipeline/head This commit looks good

This commit is contained in:
Adam Wojdyla 2022-05-16 09:40:16 +02:00
parent 128ed74433
commit 5391120270

View File

@ -17,11 +17,7 @@ pipeline {
stage('Run mlflow script and save artifacts') { stage('Run mlflow script and save artifacts') {
steps { steps {
sh "python3 lab08_deepLearining_mlflow.py $epoch" 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'
} }
} }
} }