Skip to content

Commit

Permalink
[CI] Show Sphinx warnings separately
Browse files Browse the repository at this point in the history
  • Loading branch information
speth committed Apr 18, 2024
1 parent 86e0ab5 commit 71452e5
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,13 @@ jobs:
- name: Build Cantera
run: scons build -j2 debug=n optimize=y use_pch=n
- name: Build documentation
run: scons sphinx doxygen logging=debug
run: |
scons sphinx doxygen logging=debug \
sphinx_options="-W --keep-going --warning-file=sphinx-warnings.txt"
- name: Show Sphinx warnings
run: |
find . -name sphinx-warnings.txt | cat
if: failure()
- name: Ensure 'scons help' options work
run: |
scons help --options
Expand Down

0 comments on commit 71452e5

Please sign in to comment.