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...') {
steps {
sh '/bin/bash -c "source _venv/bin/activate && pip install sphinx lxml"'
sh '/bin/bash -c "source _venv/bin/activate && cd doc && make html"'
sh 'make doc PYTHON=python3'
}
}
stage('Syncing website...') {
steps {
echo 'Syncing website...'
// sh 'rm -rf $HOME/www/*'
// sh 'cp -a ./doc/build/html/* $HOME/www/'
}