pip absolute path

This commit is contained in:
acereca 2021-02-12 14:18:52 +01:00
parent 0067ccf297
commit 075403ebd1
1 changed files with 3 additions and 3 deletions

6
Jenkinsfile vendored
View File

@ -4,9 +4,9 @@ pipeline {
stage("Setup") {
agent any
steps {
sh 'pip3.8 install sphinx'
sh 'pip3.8 install pydata-sphinx-theme'
sh 'pip3.8 install -e .'
sh '/home/patrick/.local/bin/pip3.8 install sphinx'
sh '/home/patrick/.local/bin/pip3.8 install pydata-sphinx-theme'
sh '/home/patrick/.local/bin/pip3.8 install -e .'
sh 'mkdir -p docs/_build'
}
}