Skip to content

Commit

Permalink
Disable parallel build on html target (#3437)
Browse files Browse the repository at this point in the history
  • Loading branch information
Adrian Gonzalez-Martin authored Jul 28, 2021
1 parent ab1da68 commit dfe84d8
Showing 1 changed file with 4 additions and 4 deletions.
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

0 comments on commit dfe84d8

Please sign in to comment.