Former-commit-id:0973d5018c
[formerly 8e0e4e93a094c60c18b28a5ebc49a8f175e6f373] Former-commit-id:18f11ce9e0
16 lines
346 B
Bash
16 lines
346 B
Bash
#!/bin/sh
|
|
|
|
if [ "${INITIAL_PERMGEN_SIZE}" = "" ]
|
|
then
|
|
export INITIAL_PERMGEN_SIZE="64m"
|
|
fi
|
|
|
|
if [ "${MAX_PERMGEN_SIZE}" = "" ]
|
|
then
|
|
export MAX_PERMGEN_SIZE="192m"
|
|
fi
|
|
|
|
export ANT_OPTS="-XX:PermSize=${INITIAL_PERMGEN_SIZE} -XX:MaxPermSize=${MAX_PERMGEN_SIZE} $*"
|
|
ant
|
|
|
|
sudo rsync -rugl tmp/test-reports/html/* root@awipscm:/var/www/html/junit
|