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 authored and ischoegl committed Apr 20, 2024
1 parent d81bb79 commit 020b18b
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: |
cat sphinx-warnings.txt
if: failure()
- name: Ensure 'scons help' options work
run: |
scons help --options
Expand Down

0 comments on commit 020b18b

Please sign in to comment.