This commit is contained in:
Dominik Strzako 2021-05-24 01:16:55 +02:00
parent dc32e19b34
commit f51ca4fec2

View File

@ -21,12 +21,10 @@ pipeline {
steps steps
{ {
catchError { catchError {
sh 'cd ..' sh 'mkdir tmp'
sh 'ls'
sh 'cd ..'
sh 'ls'
sh 'cd tmp' sh 'cd tmp'
sh 'mkdir mlruns' sh 'mkdir mlruns'
sh 'python3.8 Zadanie_09_MLflow_Predict_Registry.py ${BATCH_SIZE} ${EPOCHS}' sh 'python3.8 Zadanie_09_MLflow_Predict_Registry.py ${BATCH_SIZE} ${EPOCHS}'
} }
} }