We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 309cf3a commit 78cd5a2Copy full SHA for 78cd5a2
.github/workflows/ci.yml
@@ -114,9 +114,11 @@ jobs:
114
source activate pandas-dev
115
python web/pandas_web.py web/pandas --target-path=web/build
116
- name: Build documentation
117
+ # num-jobs corresponds to number of CPUs in runner
118
+ # https://docs.github.com/en/actions/reference/specifications-for-github-hosted-runners#supported-runners-and-hardware-resources
119
run: |
120
- doc/make.py --warnings-are-errors | tee sphinx.log ; exit ${PIPESTATUS[0]}
121
+ doc/make.py --warnings-are-errors --num-jobs 2 | tee sphinx.log ; exit ${PIPESTATUS[0]}
122
123
# This can be removed when the ipython directive fails when there are errors,
124
# including the `tee sphinx.log` in te previous step (https://github.com/ipython/ipython/issues/11547)
0 commit comments