BigW Consortium Gitlab

  1. 13 Oct, 2016 1 commit
  2. 05 Oct, 2016 1 commit
    • Refactor Gitlab::Identifier · 16ed9b61
      Yorick Peterse authored
      This refactors Gitlab::Identifier so it uses fewer queries and is
      actually tested. Queries are reduced by caching the output as well as
      using 1 query (instead of 2) to find a user using an SSH key.
  3. 11 Aug, 2016 1 commit
    • Pre-create all builds for Pipeline when a trigger is received · 39203f1a
      Kamil Trzcinski authored
      This change simplifies a Pipeline processing by introducing a special new status: created.
      This status is used for all builds that are created for a pipeline.
      We are then processing next stages and queueing some of the builds (created -> pending) or skipping them (created -> skipped).
      This makes it possible to simplify and solve a few ordering problems with how previously builds were scheduled.
      This also allows us to visualise a full pipeline (with created builds).
      
      This also removes an after_touch used for updating a pipeline state parameters.
      Right now in various places we explicitly call a reload_status! on pipeline to force it to be updated and saved.
  4. 09 Aug, 2016 1 commit
  5. 30 Jun, 2016 1 commit
  6. 03 Jun, 2016 3 commits
  7. 02 Jun, 2016 1 commit
  8. 24 May, 2016 1 commit
  9. 19 May, 2016 1 commit
  10. 11 Apr, 2016 1 commit
  11. 10 Mar, 2016 1 commit
  12. 28 Aug, 2015 1 commit
  13. 22 Jun, 2015 1 commit
  14. 15 Mar, 2015 1 commit
  15. 12 Feb, 2015 1 commit
  16. 02 Sep, 2014 1 commit
  17. 22 Jan, 2014 1 commit
  18. 19 Jan, 2014 1 commit
  19. 01 Apr, 2013 1 commit
  20. 25 Feb, 2013 1 commit
  21. 11 Feb, 2013 1 commit
  22. 05 Feb, 2013 1 commit
  23. 09 Jan, 2013 1 commit
  24. 20 Dec, 2012 1 commit
  25. 13 Dec, 2012 1 commit
  26. 09 Dec, 2012 1 commit
  27. 19 Nov, 2012 1 commit
  28. 13 Nov, 2012 1 commit
  29. 10 Aug, 2012 1 commit
  30. 18 Jul, 2012 1 commit
  31. 04 Apr, 2012 1 commit
  32. 01 Mar, 2012 1 commit
  33. 29 Feb, 2012 1 commit
  34. 14 Dec, 2011 1 commit
    • Added web hooks functionality · edab46e9
      Ariejan de Vroom authored
      This commit includes:
      
       * Projects can have zero or more WebHooks.
       * The PostReceive job will ask a project to execute any web hooks defined for that project.
       * WebHook has a URL, we post Github-compatible JSON to that URL.
       * Failure to execute a WebHook will be silently ignored.