Skip to content

Commit ef849e6

Browse files
committed
CI: don't build docs in parallel
pandas-dev#39366 showed that it made the performance worse.
1 parent 93d727d commit ef849e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ jobs:
116116
- name: Build documentation
117117
run: |
118118
source activate pandas-dev
119-
doc/make.py --warnings-are-errors | tee sphinx.log ; exit ${PIPESTATUS[0]}
119+
doc/make.py --warnings-are-errors --num-jobs 1 | tee sphinx.log ; exit ${PIPESTATUS[0]}
120120
121121
# This can be removed when the ipython directive fails when there are errors,
122122
# including the `tee sphinx.log` in te previous step (https://github.com/ipython/ipython/issues/11547)

0 commit comments

Comments
 (0)