1. 10.04.2019 1 коммит
    • Kamil Trzciński's avatar
      Process at most 4 pipelines during push
      · 2b9492a2
      Kamil Trzciński создал
      This adds a limitation that we will try to create pipeline
      for at most 4 first changes (branches and tags).
      
      This does not affect processing of Pipelines for Merge Requests,
      as each updated MR will have associated pipeline created.
      2b9492a2
  2. 09.04.2019 1 коммит
    • Luke Duncalfe's avatar
      Use Gitlab::PushOptions for `ci.skip` push option
      · 1883e320
      Luke Duncalfe создал
      Previously the raw push option Array was sent to Pipeline::Chain::Skip.
      
      This commit updates this class (and the chain of classes that pass the
      push option parameters from the API internal `post_receive` endpoint to
      that class) to treat push options as a Hash of options parsed by
      GitLab::PushOptions.
      
      The GitLab::PushOptions class takes options like this:
      
          -o ci.skip -o merge_request.create -o merge_request.target=branch
      
      and turns them into a Hash like this:
      
          {
            ci: {
              skip: true
            },
            merge_request: {
              create: true,
              target: 'branch'
            }
          }
      
      This now how Pipeline::Chain::Skip is determining if the `ci.skip` push
      option was used.
      1883e320
  3. 26.03.2019 1 коммит
    • Bob Van Landuyt's avatar
      Allow multiple repositories per project
      · d36415b7
      Bob Van Landuyt создал
      This changes the repository type from a binary `wiki?` to a type. So
      we can have more than 2 repository types.
      
      Now everywhere we called `.wiki?` and expected a boolean, we check
      that type.
      d36415b7
  4. 25.03.2019 2 коммита
  5. 31.12.2018 1 коммит
    • Jonathon Reinhart's avatar
      Add support for Git push options, specifically ci.skip
      · ba781484
      Jonathon Reinhart создал
      gitlab-org/gitlab-shell!166 added support for collecting push options
      from the environment, and passing them along to the
      /internal/post_receive API endpoint.
      
      This change handles the new push_options JSON element in the payload,
      and passes them on through to the GitPushService and GitTagPushService
      services.
      
      Futhermore, it adds support for the first push option, ci.skip.  With
      this change, one can use 'git push -o ci.skip' to skip CI pipe
      execution. Note that the pipeline is still created, but in the "skipped"
      state, just like with the 'ci skip' commit message text.
      
      Implements #18667
      ba781484
  6. 25.10.2018 2 коммита
  7. 27.06.2018 1 коммит
  8. 18.04.2018 1 коммит
  9. 07.03.2018 1 коммит
  10. 05.12.2017 1 коммит
  11. 28.06.2017 1 коммит
  12. 06.06.2017 1 коммит
  13. 13.05.2017 1 коммит
  14. 05.05.2017 2 коммита
  15. 29.03.2017 1 коммит
  16. 03.03.2017 1 коммит
  17. 02.11.2016 1 коммит
  18. 21.10.2016 1 коммит
    • Yorick Peterse's avatar
      Re-organize queues to use for Sidekiq
      · 97731760
      Yorick Peterse создал
      Dumping too many jobs in the same queue (e.g. the "default" queue) is a
      dangerous setup. Jobs that take a long time to process can effectively
      block any other work from being performed given there are enough of
      these jobs.
      
      Furthermore it becomes harder to monitor the jobs as a single queue
      could contain jobs for different workers. In such a setup the only
      reliable way of getting counts per job is to iterate over all jobs in a
      queue, which is a rather time consuming process.
      
      By using separate queues for various workers we have better control over
      throughput, we can add weight to queues, and we can monitor queues
      better. Some workers still use the same queue whenever their work is
      related. For example, the various CI pipeline workers use the same
      "pipeline" queue.
      
      This commit includes a Rails migration that moves Sidekiq jobs from the
      old queues to the new ones. This migration also takes care of doing the
      inverse if ever needed. This does require downtime as otherwis...
      97731760
  19. 05.08.2016 1 коммит
  20. 30.06.2016 1 коммит
  21. 19.04.2016 1 коммит
  22. 11.04.2016 1 коммит
  23. 17.03.2016 1 коммит
  24. 17.02.2016 1 коммит
  25. 15.02.2016 1 коммит
  26. 11.02.2016 1 коммит
  27. 10.08.2015 1 коммит
  28. 10.04.2015 1 коммит
  29. 15.03.2015 1 коммит
  30. 10.03.2015 1 коммит
  31. 02.09.2014 1 коммит
  32. 13.08.2014 1 коммит
  33. 06.03.2014 2 коммита
  34. 29.04.2013 1 коммит
  35. 03.04.2013 1 коммит
  36. 25.02.2013 1 коммит