Dodanie 'Jenkinsfile_dvc'

This commit is contained in:
Michał Dudziak 2023-05-13 12:03:35 +02:00
parent c4c983d762
commit 66a95f4e23

23
Jenkinsfile_dvc Normal file
View File

@ -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'
}
}
}
}