Tweak travis settings

- Try to get test build to run on travis
- Relates to #272
This commit is contained in:
Janne Valkealahti
2016-11-12 14:17:04 +00:00
parent 2e8d34f3bf
commit 58326fc948
2 changed files with 2 additions and 1 deletions

View File

@@ -20,4 +20,4 @@ script: ./gradlew clean build
env:
global:
- GRADLE_OPTS="-Xms256m"
- GRADLE_OPTS="-Xms256m -Xmx384m"

View File

@@ -36,6 +36,7 @@ configure(allprojects) {
tasks.withType(Test) {
maxParallelForks = 1
minHeapSize = '256m'
maxHeapSize = '384m'
}
}