Skip to content

Commit

Permalink
CI, DOC: Enable Sphinx parallel build
Browse files Browse the repository at this point in the history
  • Loading branch information
seiko2plus committed May 28, 2021
1 parent 815a523 commit 6722d3d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Expand Up @@ -59,7 +59,7 @@ jobs:
. venv/bin/activate
cd doc
# Don't use -q, show warning summary"
SPHINXOPTS="-n" make -e html || echo "ignoring errors for now, see gh-13114"
SPHINXOPTS="-j4 -n" make -e html || echo "ignoring errors for now, see gh-13114"
- run:
name: build devdocs
Expand All @@ -68,14 +68,14 @@ jobs:
. venv/bin/activate
cd doc
make clean
SPHINXOPTS=-q make -e html
SPHINXOPTS="-j4 -q" make -e html
- run:
name: build neps
command: |
. venv/bin/activate
cd doc/neps
SPHINXOPTS=-q make -e html
SPHINXOPTS="-j4 -q" make -e html
- store_artifacts:
path: doc/build/html/
Expand Down

0 comments on commit 6722d3d

Please sign in to comment.