From 991f013b237c2a5cf80d9d5c36cbeb666dab039d Mon Sep 17 00:00:00 2001 From: Robert Nelson <robertcnelson@beagleboard.org> Date: Mon, 3 Jul 2023 14:37:11 -0400 Subject: [PATCH] ci: gitlab-build.sh: use all 4 cores on ci builder --- gitlab-build.sh | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/gitlab-build.sh b/gitlab-build.sh index 8e478015..028f7acf 100755 --- a/gitlab-build.sh +++ b/gitlab-build.sh @@ -47,12 +47,20 @@ HERE echo "**** make html ****" # Build and serve HTML - make html BUILDDIR=public/$VER_DIR + if [ "x${CI_RUNNER_EXECUTABLE_ARCH}" == "xlinux/arm64" ] ; then + make -j4 html BUILDDIR=public/$VER_DIR + else + make html BUILDDIR=public/$VER_DIR + fi mv public/$VER_DIR/html/* public/$VER_DIR/ echo "**** make latexpdf ****" # Build, optimize, and serve PDF - make latexpdf BUILDDIR=public/$VER_DIR + if [ "x${CI_RUNNER_EXECUTABLE_ARCH}" == "xlinux/arm64" ] ; then + make -j4 latexpdf BUILDDIR=public/$VER_DIR + else + make latexpdf BUILDDIR=public/$VER_DIR + fi echo "**** pdfcpu ****" if [ "x${CI_RUNNER_EXECUTABLE_ARCH}" == "xlinux/arm64" ] ; then -- GitLab