diff --git a/Jenkinsfile-dvc b/Jenkinsfile-dvc new file mode 100644 index 0000000..4f2e119 --- /dev/null +++ b/Jenkinsfile-dvc @@ -0,0 +1,21 @@ +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') { + sh 'dvc repro' + } + } + } \ No newline at end of file