This commit is contained in:
Jakub Zaręba 2023-05-23 23:21:43 +02:00
parent f24d51ce0f
commit 7d0cef3a54
1 changed files with 2 additions and 2 deletions

View File

@ -44,13 +44,13 @@ pipeline {
stage('Pull DVC Files') {
steps {
sh 'dvc pull'
sh 'PATH=$PATH:~/.local/bin/ dvc pull'
}
}
stage('Run DVC Pipeline') {
steps {
sh 'dvc reproduce'
sh 'PATH=$PATH:~/.local/bin/ dvc reproduce'
}
}
}