gpt4 book ai didi

travis-ci - 如何解决Travis CIs 4MB输出限制?

转载 作者:行者123 更新时间:2023-12-03 11:54:03 24 4
gpt4 key购买 nike

我有一个Travis CI构建,可产生超过Travis CI限制的4MB以上的输出。

我尝试将输出发送到/ dev / null,但是如果10分钟未看到输出,Travis也将失败

如何解决这些限制?

最佳答案

以下脚本发送一些虚拟输出以使构建保持 Activity 状态,但还将构建输出记录到文件中,如果构建返回错误,则显示输出的尾部:

#!/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

关于travis-ci - 如何解决Travis CIs 4MB输出限制?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26082444/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com