Disable Debug mode and enable Info mode in CI Gradle builds.

Debug mode generated too much build log output and resulted in... 'The job exceeded the maximum log length, and has been terminated.'
This commit is contained in:
John Blum
2018-10-06 14:48:33 -07:00
parent 4fb37db088
commit 4813d04400
2 changed files with 2 additions and 2 deletions

View File

@@ -6,7 +6,7 @@ os:
jdk:
- oraclejdk8
script: ./gradlew --debug --refresh-dependencies clean build
script: ./gradlew --info --refresh-dependencies clean build
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock

2
Jenkinsfile vendored
View File

@@ -16,7 +16,7 @@ try {
node {
checkout scm
try {
sh './gradlew clean check --debug --no-daemon --refresh-dependencies'
sh './gradlew clean check --info --no-daemon --refresh-dependencies'
}
catch (e) {
currentBuild.result = 'FAILED: check'