From fc490f708214cd7edc437a3a54cb1862dfb5b8ce 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