8000 CI Disable sphinx parallelism in CircleCI doc build (#25832) · Veghit/scikit-learn@f751a6e · GitHub
[go: up one dir, main page]

Skip to content

Commit f751a6e

Browse files
lesteveItay
authored andcommitted
CI Disable sphinx parallelism in CircleCI doc build (scikit-learn#25832)
1 parent dfed654 commit f751a6e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.circleci/config.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,8 @@ jobs:
6161
- OPENBLAS_NUM_THREADS: 2
6262
- CONDA_ENV_NAME: testenv
6363
- LOCK_FILE: build_tools/circle/doc_linux-64_conda.lock
64+
# Disable sphinx parallelism to avoid EOFError or job stalling in CircleCI
65+
- SPHINX_NUMJOBS: 1
6466
steps:
6567
- checkout
6668
- run: ./build_tools/circle/checkout_merge_commit.sh

doc/Makefile

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,10 @@ PAPER =
88
BUILDDIR = _build
99

1010
# Disable multiple jobs on OSX
11-
# FIXME: disable completely the parallel build to investigate the EOFError and
12-
# OSError observe in CircleCI
1311
ifeq ($(shell uname), Darwin)
1412
SPHINX_NUMJOBS ?= 1
1513
else
16-
SPHINX_NUMJOBS ?= 1
14+
SPHINX_NUMJOBS ?= auto
1715
endif
1816

1917
ifneq ($(EXAMPLES_PATTERN),)

0 commit comments

Comments
 (0)
0