summaryrefslogtreecommitdiff
path: root/.travis/build.sh
diff options
context:
space:
mode:
authorAnthony Green <green@moxielogic.com>2019-04-28 07:36:24 -0400
committerAnthony Green <green@moxielogic.com>2019-04-28 07:36:24 -0400
commit80d07104c33045ea34a4d5185600495dc7461a12 (patch)
tree1418b4f4d8ed8b393c37cc0261e5dbf517749181 /.travis/build.sh
parentfadf1eb530713fde0be9774d926bc8202c97e379 (diff)
downloadlibffi-80d07104c33045ea34a4d5185600495dc7461a12.tar.gz
uuencode compressed log files for travis
Diffstat (limited to '.travis/build.sh')
-rwxr-xr-x.travis/build.sh11
1 files changed, 10 insertions, 1 deletions
diff --git a/.travis/build.sh b/.travis/build.sh
index 8de2e64..61e69c6 100755
--- a/.travis/build.sh
+++ b/.travis/build.sh
@@ -10,7 +10,16 @@ function build_linux()
make
make dist
make check RUNTESTFLAGS="-a $RUNTESTFLAGS"
- cat */testsuite/libffi.log
+
+ gzip -c -9 */testsuite/libffi.log > libffi.log.gz
+ echo ================================================================
+ echo The logs are too long for travis to handle, so we compress and
+ echo uuencode them. Download, decode and uncompress if you need to
+ echo read them.
+ echo ================================================================
+ uuencode libffi.log.gz -
+ echo ================================================================
+ echo ================================================================
}
function build_ios()