Skip to content

Commit fc63f84

Browse files
author
Release Manager
committed
gh-41027: Avoid excessive parallelism for doc/bootstrap fix #38753 there's also `docker/setup-make-parallelity.sh` and `src/bin/sage-num- threads.py` which we should probably prefer to use instead. If you invoke `meson compile doc-html` with say `-j3`, this isn't respected either. But at least this is an improvement of the status quo (99). ### 📝 Checklist <!-- Put an `x` in all the boxes that apply. --> - [ ] The title is concise and informative. - [ ] The description explains in detail what this PR is about. - [ ] I have linked a relevant issue or discussion. - [ ] I have created tests covering the changes. - [ ] I have updated the documentation and checked the documentation preview. ### ⌛ Dependencies <!-- List all open PRs that this PR logically depends on. For example, --> <!-- - #12345: short description why this is a dependency --> <!-- - #34567: ... --> URL: #41027 Reported by: user202729 Reviewer(s):
2 parents 4845989 + 4b0111b commit fc63f84

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/doc/bootstrap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,4 +183,4 @@ cat <<EOF
183183
184184
EOF
185185
) > "$OUTPUT_DIR"/index_alph.rst
186-
sage-package list --has-file SPKG.rst | OUTPUT_DIR=$OUTPUT_DIR OUTPUT_RST=1 xargs -P 99 -n 1 sage-spkg-info
186+
sage-package list --has-file SPKG.rst | OUTPUT_DIR=$OUTPUT_DIR OUTPUT_RST=1 xargs -P $(nproc 2> /dev/null || echo 8) -n 1 sage-spkg-info

0 commit comments

Comments
 (0)