File tree Expand file tree Collapse file tree 2 files changed +2
-11
lines changed Expand file tree Collapse file tree 2 files changed +2
-11
lines changed Original file line number Diff line number Diff line change @@ -189,11 +189,6 @@ ccache -s
189
189
190
190
export OMP_NUM_THREADS=1
191
191
192
- # Avoid CI job getting killed because it uses too much memory
193
- if [[ -z $SPHINX_NUMJOBS ]]; then
194
- export SPHINX_NUMJOBS=2
195
- fi
196
-
197
192
if [[ " $CIRCLE_BRANCH " =~ ^main$ && -z " $CI_PULL_REQUEST " ]]
198
193
then
199
194
# List available documentation versions if on main
Original file line number Diff line number Diff line change @@ -7,12 +7,8 @@ SPHINXBUILD ?= sphinx-build
7
7
PAPER =
8
8
BUILDDIR = _build
9
9
10
- # Disable multiple jobs on OSX
11
- ifeq ($(shell uname) , Darwin)
12
- SPHINX_NUMJOBS ?= 1
13
- else
14
- SPHINX_NUMJOBS ?= auto
15
- endif
10
+ # Run sequential by default, unless SPHINX_NUMJOBS is set.
11
+ SPHINX_NUMJOBS ?= 1
16
12
17
13
ifneq ($(EXAMPLES_PATTERN ) ,)
18
14
EXAMPLES_PATTERN_OPTS := -D sphinx_gallery_conf.filename_pattern="$(EXAMPLES_PATTERN ) "
You can’t perform that action at this time.
0 commit comments