ium_452662/Jenkinsfile_dvc

24 lines
458 B
Plaintext

pipeline {
agent any
stages {
stage('Clone repository') {
steps {
sh 'git clone https://git.wmi.amu.edu.pl/s452662/ium_452662'
sh 'cd ium_452662'
}
}
stage('Download DVC files') {
steps {
sh 'dvc pull'
}
}
stage('Run DVC') {
steps {
sh 'dvc reproduce'
}
}
}
}