This commit is contained in:
Jakub Zaręba 2023-05-23 23:20:35 +02:00
parent a11522f95f
commit f24d51ce0f
1 changed files with 14 additions and 5 deletions

View File

@ -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 {