ium_452662/Jenkinsfile_dvc

24 lines
415 B
Plaintext
Raw Normal View History

2023-05-13 12:03:35 +02:00
pipeline {
agent any
stages {
stage('Clone repository') {
steps {
2023-05-13 12:08:55 +02:00
sh 'cd ium_452662'
2023-05-13 12:11:42 +02:00
sh 'cd zbior_ium'
2023-05-13 12:03:35 +02:00
}
}
stage('Download DVC files') {
steps {
sh 'dvc pull'
}
}
stage('Run DVC') {
steps {
sh 'dvc reproduce'
}
}
}
}