zoukankan      html  css  js  c++  java
  • Gitlab-Runner输出最大限制

    gitlab-runner默认的控制台日志输出的最大长度是4096,实际情况中难免会超出,如果有需要可以在config.toml中添加output_limit=[数字]配置字段来调整日志输出最大长度:

    concurrent = 1
    check_interval = 0
    
    [session_server]
      session_timeout = 1800
    
    [[runners]]
      name = "xxxx"
      url = "xxxx"
      token = "xxxx"
      executor = "shell"
      output_limit = 8192
      [runners.custom_build_dir]
      [runners.cache]
        [runners.cache.s3]
        [runners.cache.gcs]
    

    然后重启gitlab-runner即可生效。

  • 相关阅读:
    Gym
    博客搬家
    UVA
    UVA
    UVA
    UVA
    UVA
    UVA1589——xiangqi
    SDUSToj第十一次作业源代码格式问题
    【成长之路】【python】python基础3
  • 原文地址:https://www.cnblogs.com/macrored/p/13998154.html
Copyright © 2011-2022 走看看