Modified JenkinsFile.
epsi-builds/msspec_python3/pipeline/head This commit looks good Details

This commit is contained in:
Sylvain Tricot 2021-09-24 16:50:08 +02:00
parent 75784d4c01
commit bdbd320bf4
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -8,12 +8,12 @@ pipeline {
} }
stage('Building HTML documentation...') { stage('Building HTML documentation...') {
steps { steps {
sh '/bin/bash -c "source _venv/bin/activate && pip install sphinx lxml"' sh 'make doc PYTHON=python3'
sh '/bin/bash -c "source _venv/bin/activate && cd doc && make html"'
} }
} }
stage('Syncing website...') { stage('Syncing website...') {
steps { steps {
echo 'Syncing website...'
// sh 'rm -rf $HOME/www/*' // sh 'rm -rf $HOME/www/*'
// sh 'cp -a ./doc/build/html/* $HOME/www/' // sh 'cp -a ./doc/build/html/* $HOME/www/'
} }