Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable parallel documentation build #3437

Merged
merged 1 commit into from
Jul 28, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions doc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#

# You can set these variables from the command line.
SPHINXOPTS = -j auto -n
SPHINXOPTS = -n
SPHINXBUILD = sphinx-build
SOURCEDIR = source
BUILDDIR = _build
Expand Down Expand Up @@ -32,7 +32,7 @@ linkcheck:
# Check for links reported as broken, ignoring 429 (too many requests)
- LINKCHECK=true $(SPHINXBUILD) \
-b linkcheck \
$(SPHINXOPTS) \
-j auto $(SPHINXOPTS) \
"$(SOURCEDIR)" \
"$(BUILDDIR)"
! grep -v '429' _build/output.txt | grep 'broken'
Expand All @@ -41,13 +41,13 @@ linkcheck:
livehtml:
sphinx-autobuild \
-b html \
--ignore "*~" $(SPHINXOPTS) "$(SOURCEDIR)" "$(BUILDDIR)"
--ignore "*~" -j auto $(SPHINXOPTS) "$(SOURCEDIR)" "$(BUILDDIR)"

livehtml-fast:
FAST_BUILD=true sphinx-autobuild \
-b html \
--ignore "*~" \
$(SPHINXOPTS) \
-j auto $(SPHINXOPTS) \
"$(SOURCEDIR)" \
"$(BUILDDIR)"

Expand Down