how to work around Travis CIs 4MB output limit?

不问归期 提交于 2019-11-27 20:25:49

问题


I have a Travis CI build that produces more than 4MB of output which exceeds Travis CIs limit.

I have tried sending output to /dev/null, but Travis also fails if no output is seen for 10 minutes

How can I workaround these constraints?


回答1:


The following script sends some dummy output to keep the build alive but also records the build output to a file and displays a tail of the output if the build returns an error:

#!/bin/bash
# Abort on Error
set -e

export PING_SLEEP=30s
export WORKDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
export BUILD_OUTPUT=$WORKDIR/build.out

touch $BUILD_OUTPUT

dump_output() {
   echo Tailing the last 500 lines of output:
   tail -500 $BUILD_OUTPUT  
}
error_handler() {
  echo ERROR: An error was encountered with the build.
  dump_output
  exit 1
}
# If an error occurs, run our error handler to output a tail of the build
trap 'error_handler' ERR

# Set up a repeating loop to send some output to Travis.

bash -c "while true; do echo \$(date) - building ...; sleep $PING_SLEEP; done" &
PING_LOOP_PID=$!

# My build is using maven, but you could build anything with this, E.g.
# your_build_command_1 >> $BUILD_OUTPUT 2>&1
# your_build_command_2 >> $BUILD_OUTPUT 2>&1
mvn clean install >> $BUILD_OUTPUT 2>&1

# The build finished without returning an error so dump a tail of the output
dump_output

# nicely terminate the ping output loop
kill $PING_LOOP_PID



回答2:


A simple alternative is to use the travis_wait command. However, that doesn't give any output.

http://docs.travis-ci.com/user/build-timeouts/




回答3:


I could solve this by using -q option in maven build: mvn clean install -q



来源:https://stackoverflow.com/questions/26082444/how-to-work-around-travis-cis-4mb-output-limit

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!