s
This commit is contained in:
parent
a11522f95f
commit
f24d51ce0f
@ -27,11 +27,20 @@ pipeline {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// stage('Install DVC') {
|
stage('Setup Python') {
|
||||||
// steps {
|
steps {
|
||||||
// sh 'pip install dvc'
|
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') {
|
stage('Pull DVC Files') {
|
||||||
steps {
|
steps {
|
||||||
|
Loading…
Reference in New Issue
Block a user