pipeline { agent any stages { stage('checkout git') { steps { git 'https://git.wmi.amu.edu.pl/s434760/ium_434760.git' } } stage('checkout dvc') { steps { catchError { sh 'dvc pull' } } } stage('reproduce') { steps { sh 'dvc repro' } } } }