We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae89264 commit 8a3d85bCopy full SHA for 8a3d85b
1 file changed
.github/workflows/ci_docs.yml
@@ -147,11 +147,11 @@ jobs:
147
148
- name: Build the PDF documentation
149
run: |
150
- log_file="${RUNNER_TEMP}/sphinx-latex.log"
151
- make -C doc latex 2>&1 | tee "${log_file}"
+ log_file="${RUNNER_TEMP}/sphinx-pdf.log"
+ make -C doc pdf 2>&1 | tee "${log_file}"
152
exit_code=${PIPESTATUS[0]}
153
if [[ "${RUNNER_OS}" == "Windows" && "${exit_code}" -eq 2 ]] && grep -q "make: .* Error 2816" "${log_file}"; then
154
- echo "Sphinx LaTeX build exited with make error 2816 (segmentation fault) on Windows; allowing workflow to continue."
+ echo "Sphinx PDF build exited with make error 2816 (segmentation fault) on Windows; allowing workflow to continue."
155
exit 0
156
fi
157
0 commit comments