pipeline { agent any stages { stage('Clone repository') { steps { sh 'cd ium_452662' sh 'cd zbior_ium' } } stage('Download DVC files') { steps { sh 'dvc pull' } } stage('Run DVC') { steps { sh 'dvc reproduce' } } } }