You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
410 B

#!/bin/sh
. DoBuildFiles/generic.properties
{ [ -z "$BUILDVERBOSE" ] && [ -z "$TESTVERBOSE" ]; } || set -- --info "$@"
[ -z "$VERBOSE" ] || set -x
exec gradle \
--no-daemon \
--parallel \
--console plain \
--max-workers "$NPROC" \
--gradle-user-home "$PWD/gradle" \
--project-cache-dir "$PWD/gradle-cache" \
--project-dir "$PROJECTDIR" \
"-Dorg.gradle.project.buildDir=$PWD/build" \
"$@"