reduce log output for drone

Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
This commit is contained in:
tobiasKaminsky 2020-07-07 10:55:38 +02:00
parent e3121bf18d
commit a884bab878
No known key found for this signature in database
GPG Key ID: 0E00D4D47D0C5AF7
2 changed files with 3 additions and 3 deletions

View File

@ -47,7 +47,7 @@ require 'xmlsimple'
# run FindBugs
puts "running FindBugs..."
system './gradlew assembleGplayDebug'
system './gradlew assembleGplayDebug 1>/dev/null'
# confirm that assemble ran w/out error
result = $?.to_i
@ -56,7 +56,7 @@ if result != 0
exit 1
end
system './gradlew spotbugsGplayDebugReport'
system './gradlew spotbugsGplayDebugReport 1>/dev/null 2>&1'
# find FindBugs report file
findbugs_reports = Dir.glob(FINDBUGS_REPORT_FILE)

View File

@ -56,7 +56,7 @@ end
# run Lint
puts "running Lint..."
system './gradlew clean lint'
system './gradlew clean lint 1>/dev/null'
# confirm that Lint ran w/out error
result = $?.to_i