one more time

This commit is contained in:
Dominik Strzako 2021-05-23 22:35:45 +02:00
parent ff2d03ecb5
commit 9bed532ab2

View File

@ -13,7 +13,8 @@ pipeline {
{ {
steps steps
{ {
copyArtifacts(fingerprintArtifacts: true, projectName: 's434788-training/mlflow', selector: buildParameter('WHICH_BUILD')) sh 'rm -r my_model'
copyArtifacts(fingerprintArtifacts: true, projectName: 's434695-training/train', selector: buildParameter('WHICH_BUILD'))
} }
} }
stage('predict') stage('predict')
@ -21,7 +22,6 @@ pipeline {
steps steps
{ {
catchError { catchError {
sh 'rm -r my_model'
sh 'python3.8 Zadanie_09_MLflow_Predict.py ${BATCH_SIZE} ${EPOCHS}' sh 'python3.8 Zadanie_09_MLflow_Predict.py ${BATCH_SIZE} ${EPOCHS}'
} }
} }