From f24d51ce0fb7c7e0ad5624cca67bad86f0d00dbc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Zar=C4=99ba?= Date: Tue, 23 May 2023 23:20:35 +0200 Subject: [PATCH] s --- JenkinsfileDVC | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/JenkinsfileDVC b/JenkinsfileDVC index 739424d..b048ffe 100644 --- a/JenkinsfileDVC +++ b/JenkinsfileDVC @@ -27,11 +27,20 @@ pipeline { } } - // stage('Install DVC') { - // steps { - // sh 'pip install dvc' - // } - // } + stage('Setup Python') { + steps { + sh ''' + curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py + python3 get-pip.py --user + ''' + } + } + + stage('Install DVC') { + steps { + sh 'python3 -m pip install --user dvc' + } + } stage('Pull DVC Files') { steps {