ium_452662/Jenkinsfile_dvc

23 lines
425 B
Plaintext

pipeline {
agent any
stages {
stage('Clone repository') {
steps {
sh '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'
}
}
}
}