24 lines
824 B
Bash
Executable File
24 lines
824 B
Bash
Executable File
#!/bin/bash
|
|
# drop page cache and kernel slab objects on linux
|
|
[[ -x /usr/local/sbin/drop-caches ]] && sudo /usr/local/sbin/drop-caches
|
|
rm -Rfv ~/.gradle/init.d
|
|
mkdir -p ~/.gradle/init.d && cp -v $WORKSPACE/.ci/init.gradle ~/.gradle/init.d
|
|
if [ "$(uname -m)" = "arm64" ] || [ "$(uname -m)" = "aarch64" ]; then
|
|
MAX_WORKERS=16
|
|
elif [ -f /proc/cpuinfo ]; then
|
|
MAX_WORKERS=`grep '^cpu\scores' /proc/cpuinfo | uniq | sed 's/\s\+//g' | cut -d':' -f 2`
|
|
else
|
|
if [[ "$OSTYPE" == "darwin"* ]]; then
|
|
MAX_WORKERS=`sysctl -n hw.physicalcpu | sed 's/\s\+//g'`
|
|
else
|
|
echo "Unsupported OS Type: $OSTYPE"
|
|
exit 1
|
|
fi
|
|
fi
|
|
if pwd | grep -v -q ^/dev/shm ; then
|
|
echo "Not running on a ramdisk, reducing number of workers"
|
|
MAX_WORKERS=$(($MAX_WORKERS*2/3))
|
|
fi
|
|
set -e
|
|
$GRADLEW -S --max-workers=$MAX_WORKERS $@
|