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