palemoon: Further drop parallelism

It's still not stable on OfBorg.

(cherry picked from commit 2001f8d1ac)
This commit is contained in:
OPNA2608
2022-10-03 00:28:04 +02:00
committed by github-actions[bot]
parent b42eedba4a
commit ab45de0499

View File

@@ -115,7 +115,7 @@ stdenv.mkDerivation rec {
# Too many cores can lead to build flakiness
# https://forum.palemoon.org/viewtopic.php?f=5&t=28480
export jobs=$(($NIX_BUILD_CORES<=20 ? $NIX_BUILD_CORES : 20))
export jobs=$(($NIX_BUILD_CORES<=16 ? $NIX_BUILD_CORES : 16))
if [ -z "$enableParallelBuilding" ]; then
jobs=1
fi