2023-05-13 12:03:35 +02:00
|
|
|
pipeline {
|
|
|
|
agent any
|
|
|
|
|
|
|
|
stages {
|
|
|
|
stage('Clone repository') {
|
|
|
|
steps {
|
2023-05-13 12:06:48 +02:00
|
|
|
sh 'git clone 'https://git.wmi.amu.edu.pl/s452662/ium_452662''
|
2023-05-13 12:03:35 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
stage('Download DVC files') {
|
|
|
|
steps {
|
|
|
|
sh 'dvc pull'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
stage('Run DVC') {
|
|
|
|
steps {
|
|
|
|
sh 'dvc reproduce'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|