Amend: Publish JUnit test reports as XML, in support of Jenkins. Fix build/merge of 13.3.1 code so it compiles. Change-Id: Ida653ee4ea8cd9d37f0b7d51f2d00db8fda38ca4 Former-commit-id:71365cd945
[formerly71365cd945
[formerly 60efd125706d618ae06eb84f959302213da2f7f1]] Former-commit-id:1930183036
Former-commit-id:48a96911c8
7 lines
158 B
Bash
Executable file
7 lines
158 B
Bash
Executable file
#!/bin/sh
|
|
|
|
INITIAL_PERMGEN_SIZE="64m"
|
|
MAX_PERMGEN_SIZE="128m"
|
|
|
|
export ANT_OPTS="-XX:PermSize=${INITIAL_PERMGEN_SIZE} -XX:MaxPermSize=${MAX_PERMGEN_SIZE}"
|
|
ant
|