BigW Consortium Gitlab

  1. 03 Mar, 2017 1 commit
  2. 23 Feb, 2017 2 commits
  3. 31 Jan, 2017 1 commit
    • Add GitLab Pages · 120f9aba
      Kamil Trzcinski authored
      - The pages are created when build artifacts for `pages` job are uploaded
      - Pages serve the content under: http://group.pages.domain.com/project
      - Pages can be used to serve the group page, special project named as host: group.pages.domain.com
      - User can provide own 403 and 404 error pages by creating 403.html and 404.html in group page project
      - Pages can be explicitly removed from the project by clicking Remove Pages in Project Settings
      - The size of pages is limited by Application Setting: max pages size, which limits the maximum size of unpacked archive (default: 100MB)
      - The public/ is extracted from artifacts and content is served as static pages
      - Pages asynchronous worker use `dd` to limit the unpacked tar size
      - Pages needs to be explicitly enabled and domain needs to be specified in gitlab.yml
      - Pages are part of backups
      - Pages notify the deployment status using Commit Status API
      - Pages use a new sidekiq queue: pages
      - Pages use a separate nginx config which needs to be explicitly added
  4. 09 Jan, 2017 1 commit
  5. 30 Nov, 2016 2 commits
  6. 27 Oct, 2016 1 commit
  7. 24 Oct, 2016 1 commit
  8. 11 Aug, 2016 1 commit
  9. 09 Aug, 2016 1 commit
  10. 01 Jul, 2016 1 commit
  11. 30 Jun, 2016 1 commit
  12. 03 Jun, 2016 2 commits
  13. 23 May, 2016 1 commit
  14. 16 May, 2016 1 commit
  15. 30 Mar, 2016 1 commit
  16. 22 Mar, 2016 1 commit
  17. 19 Nov, 2015 1 commit
  18. 18 Nov, 2015 1 commit
  19. 10 Nov, 2015 1 commit
    • Implement Build Artifacts · d0e3e823
      Kamil Trzcinski authored
      - Offloads uploading to GitLab Workhorse
      - Use /authorize request for fast uploading
      - Added backup recipes for artifacts
      - Support download acceleration using X-Sendfile
  20. 06 Oct, 2015 2 commits
  21. 03 Oct, 2015 1 commit
  22. 15 Sep, 2015 3 commits
  23. 24 Jul, 2015 2 commits
  24. 10 Jul, 2015 1 commit
  25. 09 Jul, 2015 1 commit
  26. 08 Jul, 2015 1 commit
  27. 07 Jul, 2015 1 commit
  28. 23 Jun, 2015 1 commit
  29. 22 Jun, 2015 3 commits
  30. 02 Apr, 2015 2 commits
    • Improve regexp to prevent false positives · b277f23a
      Stan Hu authored
      If a filename happened to contain "db" and enough "rwx" characters before, then
      this test would previously fail. For example:
      
      ```
      drwxr-xr-x gitlab-runner/gitlab-runner      0 2015-04-02 07:46 uploads/tmp/cassidy.stokes8477/gitlabhq/36d972fa55d6b44810fc6fd843473adb/
      ```
      
      Adding a space before the "db" match string tightens up the regexp and reduces the
      chance of unintended match.
    • ability to skip some items in backup · 67c83489
      Valery Sizov authored