ium_452662/Jenkinsfile_dvc

24 lines
415 B
Plaintext

pipeline {
agent any
stages {
stage('Clone repository') {
steps {
sh 'cd ium_452662'
sh 'cd zbior_ium'
}
}
stage('Download DVC files') {
steps {
sh 'dvc pull'
}
}
stage('Run DVC') {
steps {
sh 'dvc reproduce'
}
}
}
}