diff --git a/Jenkinsfile_dvc b/Jenkinsfile_dvc new file mode 100644 index 0000000..b384ae4 --- /dev/null +++ b/Jenkinsfile_dvc @@ -0,0 +1,23 @@ +pipeline { + agent any + + stages { + stage('Clone repository') { + steps { + git clone 'https://git.wmi.amu.edu.pl/s452662/ium_452662' + } + } + + stage('Download DVC files') { + steps { + sh 'dvc pull' + } + } + + stage('Run DVC') { + steps { + sh 'dvc reproduce' + } + } + } +} \ No newline at end of file