问题描述

gitlab pipelines job执行时日志较大报错

Job's log exceeded limit of 4194304 bytes.

解决方案

出现该问题主要是因为gitlab runner默认日志大小为4096,修改相关配置即可

1.修改gitlab runner配置/etc/gitlab-runner/config.toml

concurrent = 1
check_interval = 0 [[runners]]
name = "ci"
url = "http://git.***.org/"
token = "6f20e039115b404f4ff88fb4633fd7"
executor = "shell"
builds_dir = "/mdata/builds"
# 此行为新增行,默认配置为4096
output_limit = 8192
[runners.cache]
2.重启gitlab runner gitlab-runner restart

最新文章

  1. jsp利用application统计在线人数的方法
  2. XPath 语法
  3. iOS开发学习概述及知识整理
  4. iOS--页面跳转(UITableView)
  5. 用shell脚本批量修改文件后缀名
  6. solr5.2.1环境搭建教程
  7. Linux驱动设计——字符设备驱动(一)
  8. 2016.04.09 使用Powerdesigner进行创建数据库的概念模型并转为物理模型
  9. Android 订阅-发布者模式-详解
  10. 【UVA】【10828】随机程序
  11. 一些不错的英文歌曲MV,留个存档!
  12. Oracle listener lsnrctl
  13. 一位月薪1.2w的北漂程序员真实生活!
  14. java9最新发布
  15. 解决Visual Studio禁止使用strlen函数的问题
  16. ZigBee毕设
  17. magrittr管道操作符使用解释(一)
  18. python中的面向对象学习以及类的多态
  19. 关于Maven整合SSM项目中报错Invalid bound statement (not found):的问题解决
  20. Atitit 转移特效attilax总结

热门文章

  1. Best Time to Buy and Sell Stock i
  2. [转]CAS原理
  3. jquery.js
  4. SDCC2013大会笔记整理
  5. 绕过校园网WEB认证_iodine实现
  6. Ocelot中文文档-微服务ServiceFabric
  7. 程序员快递请查收,来自Python黑客大佬的一份DDOS攻击说明书!
  8. Python 基础【二】 下
  9. 原生javascript写自己的运动库(匀速运动篇)
  10. Python_marshal模块操作二进制文件