This commit is contained in:
Jakub Zaręba 2023-05-23 23:21:43 +02:00
parent f24d51ce0f
commit 7d0cef3a54

View File

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