Changing documentation generation structure
All checks were successful
ydeng/bmlsa/pipeline/head This commit looks good

This commit is contained in:
2023-04-28 15:47:27 -05:00
parent a8b820523a
commit d6edc0e317
5 changed files with 5 additions and 64 deletions

2
Jenkinsfile vendored
View File

@@ -18,7 +18,7 @@ pipeline {
sh 'rm -rf ./dist/*'
sh 'rm -rf ./docs/build/*'
sh "python -m build"
sh 'sphinx-apidoc -o docs/source/ src/bmlsa --force'
sh 'sphinx-apidoc -o docs/source/autodoc/bmlsa src/bmlsa --force'
sh 'make -C docs html'
publishHTML([allowMissing: false, alwaysLinkToLastBuild: false, keepAll: false, reportDir: 'docs/build/html', reportFiles: 'index.html', reportName: 'Documentation', reportTitles: ''])
}