We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 07965b1 + 3f17c94 commit 5e3bbdaCopy full SHA for 5e3bbda
build.gradle
@@ -10,9 +10,8 @@ buildscript {
10
}
11
12
ext {
13
- isTravisBuild = System.getenv().get("TRAVIS") == 'true'
14
// overall project version
15
- isCiBuild = project.hasProperty("isCiBuild")
+ isCiBuild = System.getenv().get("TRAVIS") == 'true' || System.getenv().get("CI") as Boolean
16
isSnapshot = project.projectVersion.endsWith("-SNAPSHOT")
17
isReleaseVersion = !isSnapshot
18
@@ -163,7 +162,7 @@ subprojects {
163
162
testLogging {
164
exceptionFormat ='full'
165
166
- if (isTravisBuild) {
+ if (isCiBuild) {
167
maxParallelForks = 2
168
jvmArgs = ['-server', '-Xmx1024M']
169
forkEvery = 20
0 commit comments