Skip to content
This repository was archived by the owner on Jan 25, 2021. It is now read-only.

Commit 80f2564

Browse files
committed
trying the same memory fix for CircleCI
1 parent 1804358 commit 80f2564

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ task wrapper(type: Wrapper) {
227227
distributionUrl = "https://services.gradle.org/distributions/gradle-${gradleVersion}-all.zip"
228228
}
229229

230-
if (System.env.TRAVIS == 'true') {
230+
if (System.env.TRAVIS == 'true' || System.env.CIRCLECI == 'true') {
231231
allprojects {
232232
tasks.withType(GroovyCompile) {
233233
groovyOptions.fork = false

circle.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
machine:
22
java:
33
version: oraclejdk8
4+
environment:
5+
GRADLE_OPTS: -Xms128m
46

57
dependencies:
68
pre:

0 commit comments

Comments
 (0)