From 16cfe314e6c8a85316e48e45f40bff7094cf132a Mon Sep 17 00:00:00 2001 From: Robert Nelson <robertcnelson@beagleboard.org> Date: Fri, 16 Jun 2023 10:56:33 -0400 Subject: [PATCH] gitlab-build.sh: use sphinx-build -j auto for parallel build --- gitlab-build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gitlab-build.sh b/gitlab-build.sh index 59ff1cd5..d2a8fe27 100755 --- a/gitlab-build.sh +++ b/gitlab-build.sh @@ -38,7 +38,7 @@ HERE echo "**** Updating $PAGES_URL/$VER_DIR ****" - sphinx-build -b html . public/$VER_DIR/ + sphinx-build -j auto -b html . public/$VER_DIR/ sphinx-build -M latexpdf . public/$VER_DIR/ pdfcpu optimize public/$VER_DIR/latex/beagleboard-docs.pdf mv public/$VER_DIR/latex/beagleboard-docs.pdf public/$VER_DIR/ -- GitLab