我正在使用Travis CI.org(公共仓库)来执行我的构建,并且日志正在Travis主页(日志文件)上打印.我想提取日志文件/将日志文件发送到
Git HUB或任何其他外部开源工具来访问它.
能告诉我们如何实现这个目标吗?
最佳答案 我们可以将构建工件部署到S3:如果您使用的是github和S3,请将以下代码粘贴到.travis.yml文件中.
after_failure:
addons:
artifacts:
paths:
- $(git ls-files -o | tr "\n" ":")
deploy:
- provider: s3
- access_key_id: $ARTIFACTS_KEY
- secret_access_key: $ARTIFACTS_SECRET
- bucket: $ARTIFACTS_BUCKET
- skip_cleanup: true
- acl: public_read
另外,如果要发送免费的开源工具,可以使用chunk.io.将以下代码放在shell脚本中,并从.travis.yml文件的after_failure部分调用它:
cd path/to/directory/where/untracked files store/
count=$(git ls-files -o | wc -l)
git ls-files -o
echo ">>>>>>>>> CONTAINERS LOG FILES <<<<<<<<<<<<"
for (( i=1; i<"$count";i++ ))
do
file=$(echo $(git ls-files -o | sed "${i}q;d"))
echo "$file"
cat $file | curl -sT - chunk.io
done
echo " >>>>> testsummary log file <<<< "
cat testsummary.log | curl -sT - chunk.io