Skip to content
This repository was archived by the owner on Mar 20, 2025. It is now read-only.

Commit cf90b90

Browse files
author
Feanil Patel
committed
build: Disable parallel builds for now.
The sphinx-reredirect extension does not declare it self safe or unsafe for parallel execution which leads to sphinx generating a warning when we build for testing. For now remove the parallel execution to get rid of the warning. Longer Term: I've made a Merge request against the extension to fix the issue. https://gitlab.com/documatt/sphinx-reredirects/-/merge_requests/10 and I've created #2107 to track the issue so it doesn't get lost. In the mean time, turning off the parallel builds doesn't seem to significantly slow down the builds, a clean build from scratch without parallelization took less than 6 minutes.
1 parent 99f8f2d commit cf90b90

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

run_tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ for project in "${projects[@]}"; do
7979
# -w writes warnings and errors to the specified file in
8080
# addition to stderr.
8181
# -n runs in nit-picky mode.
82-
make html SPHINXOPTS="-j4 -n -w $err_log_file"
82+
make html SPHINXOPTS="-w $err_log_file"
8383

8484
if [ $? -gt 0 ]; then
8585
project_build_status=1

0 commit comments

Comments
 (0)