Skip to content
代码片段 群组 项目
该项目从 https://gitlab.com/gitlab-org/gitlab.git 镜像。 拉取镜像更新于
  1. 1月 30, 2025
  2. 10月 29, 2024
  3. 10月 11, 2024
  4. 8月 27, 2024
    • Lukas Eipert's avatar
      Add tailwind warnings to allowed warnings · 03bd5efa
      Lukas Eipert 创作于
      Apparently if we have _no_ legacy util in our code base, tailwind prints
      a warning which needs to be filtered out by our static analysis script.
      
      The filtering can be removed once we don't compile the legacy utils
      anymore (which we currently do for linting purposes).
      03bd5efa
  5. 7月 30, 2024
  6. 7月 10, 2024
    • Mehmet Emin INAC's avatar
      Download export parts in parallel · a33958a8
      Mehmet Emin INAC 创作于
      This change installs a new gem called `async` to utilize fibers and
      non-blocking IO features of Ruby 3.
      
      We will use the `Async` DSL to utilize fibers to concurrently read
      intermediary vulnerability export files while producing the final
      report.
      a33958a8
  7. 10月 17, 2023
  8. 10月 10, 2023
  9. 7月 11, 2023
  10. 5月 10, 2023
  11. 3月 24, 2023
  12. 12月 27, 2022
    • Peter Leitzen's avatar
      CI: Allow warning emitted by scripts/static-analysis · a97df133
      Peter Leitzen 创作于
      When scripts/static-analysis sees a warning it prints it on stderr
      along with the following banner:
      
      **** bin/rake config_lint had the following warning(s):
      
      Since we are filtering certain warnings via `fail_on_warnings` we need
      to filter this line as well.
      
      This commit also turns all allowed warnings into regexp.
      a97df133
  13. 12月 22, 2022
    • Peter Leitzen's avatar
      CI: Fail jobs on RuboCop warnings · fa9c94ac
      Peter Leitzen 创作于
      Usage:
        fail_on_warnings "some command" || exit 1
        run_timed_command "fail_on_warnings some command"
      
      Example:
        $ run_timed_command "fail_on_warnings ls invalid"
        $ fail_on_warnings ls invalid
        There were warnings:
        ls: cannot access 'invalid': No such file or directory
        ==> 'fail_on_warnings ls invalid' failed (1) in 0 seconds.
      fa9c94ac
加载中