From beae72f6bab1b8b3c6e46254a908d16699b7792f Mon Sep 17 00:00:00 2001 From: Michael Muller Date: Wed, 31 Oct 2018 16:44:26 -0400 Subject: [PATCH] Set TERM=dumb in environment to limit build output The status information gradle prints out doesn't look very good in Travis. In fact, it causes the logfile to exceed the maximum allowed by Travis. --- .travis.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.travis.yml b/.travis.yml index 96fd20ba7..780f923d8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,6 +12,9 @@ cache: - $HOME/.gradle/caches/ - $HOME/.gradle/wrapper/ +env: + TERM=dumb + install: - wget http://services.gradle.org/distributions/gradle-4.10.2-bin.zip && unzip gradle-4.10.2-bin.zip