build.sh: formally change to JOBS=3

This change was originally done locally in the build-server by Adam Bergmark
and seems to be work okay for some time now
This commit is contained in:
Jens Petersen 2022-08-30 11:27:04 +08:00
parent 5c3b1e8d00
commit fb338c496e

View File

@ -120,8 +120,8 @@ fi
docker run $ARGS_PREBUILD $IMAGE /bin/bash -c 'GHCVER=$(sed -n "s/^ghc-version: \(.*\)/\1/p" constraints.yaml) && stack setup ghc-$GHCVER --verbosity=error && stack exec --resolver=ghc-$GHCVER curator check-snapshot && curator unpack'
case $SHORTNAME in
lts) JOBS=1 ;;
nightly) JOBS=1 ;;
lts) JOBS=3 ;;
nightly) JOBS=3 ;;
esac
if [ -e "$SHORTNAME-build.log" ]