From 6ca5e1ec5150fe2ec5db64a3518c47055fa0e94c Mon Sep 17 00:00:00 2001 From: Robert Nelson <robertcnelson@beagleboard.org> Date: Fri, 16 Jun 2023 11:31:49 -0400 Subject: [PATCH] gitlab-build.sh: sphinx-build supports parallel building enable --- gitlab-build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gitlab-build.sh b/gitlab-build.sh index 59ff1cd5..e4dcb7d8 100755 --- a/gitlab-build.sh +++ b/gitlab-build.sh @@ -38,8 +38,8 @@ HERE echo "**** Updating $PAGES_URL/$VER_DIR ****" - sphinx-build -b html . public/$VER_DIR/ - sphinx-build -M latexpdf . public/$VER_DIR/ + sphinx-build -j auto -b html . public/$VER_DIR/ + sphinx-build -j auto -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/ rm -rf public/$VER_DIR/latex -- GitLab