Forum | Documentation | Website | Blog

Skip to content
Snippets Groups Projects
Commit 991f013b authored by Robert Nelson's avatar Robert Nelson
Browse files

ci: gitlab-build.sh: use all 4 cores on ci builder

parent 9d8f1cc0
No related merge requests found
...@@ -47,12 +47,20 @@ HERE ...@@ -47,12 +47,20 @@ HERE
echo "**** make html ****" echo "**** make html ****"
# Build and serve 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/ mv public/$VER_DIR/html/* public/$VER_DIR/
echo "**** make latexpdf ****" echo "**** make latexpdf ****"
# Build, optimize, and serve PDF # 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 ****" echo "**** pdfcpu ****"
if [ "x${CI_RUNNER_EXECUTABLE_ARCH}" == "xlinux/arm64" ] ; then if [ "x${CI_RUNNER_EXECUTABLE_ARCH}" == "xlinux/arm64" ] ; then
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment