ium_452662/Jenkinsfile_dvc

23 lines
381 B
Plaintext

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