Skip to content

Commit

Permalink
Merge pull request #554 from UIUCLibrary/docs-checker
Browse files Browse the repository at this point in the history
Docs checker
  • Loading branch information
henryborchers authored Dec 2, 2024
2 parents 54a9c16 + f1aea66 commit 0fd6122
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 109 deletions.
108 changes: 0 additions & 108 deletions docs/source/build_installer/build_installer.rst

This file was deleted.

Binary file removed docs/source/build_installer/cmake_build.png
Binary file not shown.
Binary file removed docs/source/build_installer/cmake_configure.png
Binary file not shown.
Binary file removed docs/source/build_installer/new_directory.png
Binary file not shown.
1 change: 0 additions & 1 deletion docs/source/development.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,5 @@ Developer’s Guide
:maxdepth: 3

plugin_development/develop_plugins
build_installer/build_installer
api_reference

12 changes: 12 additions & 0 deletions vars/runJenkinsPipeline.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -288,6 +288,18 @@ def call(){
}
}
}
stage('Run Docs linkcheck'){
steps {
catchError(buildResult: 'SUCCESS', message: 'Sphinx docs linkcheck', stageResult: 'UNSTABLE') {
sh(
label: 'Running Sphinx docs linkcheck',
script: '''. ./venv/bin/activate
python -m sphinx -b doctest docs/source build/docs -d build/docs/doctrees --no-color --builder=linkcheck --fail-on-warning
'''
)
}
}
}
stage('Run MyPy Static Analysis') {
steps{
catchError(buildResult: 'SUCCESS', message: 'MyPy found issues', stageResult: 'UNSTABLE') {
Expand Down

0 comments on commit 0fd6122

Please sign in to comment.