Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add gitaly source installation instructions | Jacob Vosmaer | 2017-03-21 | 1 | -0/+16 |
| | |||||
* | remove remaining vestiges of teaspoon test runner | Mike Greiling | 2017-01-10 | 1 | -8/+0 |
| | |||||
* | Remove trailing whitespace when generating changelog entrynuke-ugly-spaces-in-changelog-generator | Adam Niedzielski | 2016-12-09 | 1 | -3/+8 |
| | |||||
* | Simplify `branch_name` in bin/changelogrs-simplify-changelog-branch_name | Robert Speicher | 2016-12-02 | 1 | -1/+1 |
| | | | | | The `--short` option has existed since at least 1.8.1: https://git-scm.com/docs/git-symbolic-ref/1.8.1 | ||||
* | Add StackProf to the Gemfile, along with a utility to get a profile for a spec | Nick Thomas | 2016-11-29 | 1 | -0/+16 |
| | |||||
* | Update help banner for bin/changelog | Robert Speicher | 2016-11-03 | 1 | -1/+1 |
| | | | | [ci skip] | ||||
* | Add a `--force` option to bin/changelogrs-changelog-force | Robert Speicher | 2016-11-02 | 1 | -1/+7 |
| | |||||
* | Add specs for ChangelogOptionParser in bin/changelogrs-bin-changelog | Robert Speicher | 2016-10-31 | 1 | -1/+2 |
| | |||||
* | Add a bin/changelog script | Robert Speicher | 2016-10-31 | 1 | -0/+163 |
| | |||||
* | Re-organize queues to use for Sidekiqseparate-sidekiq-queues | Yorick Peterse | 2016-10-21 | 1 | -1/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 otherwise new jobs could be scheduled in the old queues after this migration completes. This commit also includes an RSpec test that blacklists the use of the "default" queue and ensures cron workers use the "cronjob" queue. Fixes gitlab-org/gitlab-ce#23370 | ||||
* | Use ENABLE_SPRING to use it by defaultmake-spring-optional | Kamil Trzcinski | 2016-06-17 | 1 | -1/+1 |
| | |||||
* | Use 'exec' in Unicorn and Sidekiq launch scripts | Jacob Vosmaer | 2016-04-28 | 2 | -3/+3 |
| | | | | | | | | | | | | | | | | When running Unicorn or Sidekiq in the foreground this change removes an intermediate /bin/sh process. This makes process supervision in the GitLab Development Kit more reliable. This change does not affect Omnibus-GitLab (because there we do not use these launch scripts). Installations from source do use the launch scripts but for the standard GitLab init script this change will not make a difference. Custom installations using Upstart or Systemd may be affected however, because under certain configurations these systems count exactly how many forks happen during process startup, and we are reducing that number by one here. | ||||
* | Re-generate Spring binstubs for updated version of Spring | Robert Speicher | 2016-04-22 | 6 | -10/+30 |
| | | | | | | | Prevents output like this: Array values in the parameter are deprecated. Please use a String or nil. An Array was passed in from bin/rspec:3:in `load' | ||||
* | Use rake db:reset instead of db:setup | Yorick Peterse | 2016-04-14 | 1 | -1/+1 |
| | | | | | | | | | | | | Using db:reset ensures existing tables are first dropped. This in turn ensures that we can drop tables regardless of any foreign key constraints. While CE currently doesn't have any foreign keys EE defines the following relation: remote_mirrors.project_id -> projects.id MySQL will complain whenever you try to drop the "projects" table first even when using "DROP TABLE ... CASCADE". | ||||
* | Direct sidekiq boot output to log filesimplify-procfile | Jacob Vosmaer | 2016-01-15 | 1 | -1/+1 |
| | | | | This behavior got lost in the previous commit. | ||||
* | Improve bin/ launchers | Jacob Vosmaer | 2016-01-14 | 2 | -3/+15 |
| | |||||
* | Add 'resume' capability to parallel-rsync-repossync-all-repos | Jacob Vosmaer | 2015-12-08 | 1 | -14/+29 |
| | |||||
* | Merge branch 'master' into sync-all-repos | Jacob Vosmaer | 2015-12-08 | 6 | -12/+34 |
|\ | |||||
| * | Fix mailer queuefix_mailer_queue | Valery Sizov | 2015-12-03 | 1 | -1/+1 |
| | | |||||
| * | Rails update to 4.2.4 | Valery Sizov | 2015-11-25 | 5 | -11/+33 |
| | | |||||
* | | Add RSYNC variable to parallel-rsync-repos | Jacob Vosmaer | 2015-10-05 | 1 | -1/+14 |
| | | |||||
* | | Add parallel-rsync-repos script and start docs | Jacob Vosmaer | 2015-09-25 | 1 | -0/+26 |
|/ | |||||
* | Merge branch 'master' into ci-and-ce-sitting-in-a-tree-k-i-s-s-i-n-g | Dmitriy Zaporozhets | 2015-09-09 | 2 | -3/+34 |
|\ | |||||
| * | Properly daemonize the mail_room processimprove-mail_room-wrapper | Jacob Vosmaer | 2015-08-27 | 2 | -3/+34 |
| | | | | | | | | | | | | | | | | | | The old invocation only worked by accident because we have a '&' somewhere in the init script for expediency. When ran from a terminal, the mail_room daemon process ended up in the session of the terminal. This commit adds a small wrapper that tries to do the textbook daemonization steps (double fork, setsid etc.) while also taking care that the pidfile is written before the 'start' process exits. | ||||
* | | Groundwork for merging CI into CE | Douwe Maan | 2015-08-25 | 2 | -1/+4 |
|/ | |||||
* | Fix bin/mail_room. | Douwe Maan | 2015-08-19 | 1 | -8/+9 |
| | |||||
* | Update init scripts. | Douwe Maan | 2015-08-19 | 2 | -1/+52 |
| | |||||
* | Remove Guard | Robert Speicher | 2015-06-03 | 1 | -16/+0 |
| | | | | None of the GitLab B.V. developers were using it. | ||||
* | Fix bin/rails binstubrs-gems | Robert Speicher | 2015-05-20 | 1 | -2/+3 |
| | |||||
* | Update spring, re-run binstubs | Robert Speicher | 2015-05-20 | 3 | -13/+8 |
| | |||||
* | Make sure Sidekiq picks up archive_repo queue in production.repository-archive-worker | Douwe Maan | 2015-04-01 | 1 | -1/+1 |
| | |||||
* | Added binstub for guard | Jeroen van Baarsen | 2015-03-18 | 1 | -0/+16 |
| | | | | Signed-off-by: Jeroen van Baarsen <jeroenvanbaarsen@gmail.com> | ||||
* | Updated rspec to rspec 3.x syntax | Jeroen van Baarsen | 2015-02-12 | 1 | -1/+1 |
| | | | | Signed-off-by: Jeroen van Baarsen <jeroenvanbaarsen@gmail.com> | ||||
* | Use new way of defining services on packager.io | Cyril Rohr | 2015-01-18 | 1 | -3/+0 |
| | |||||
* | Revert "Delete mailer queue" | Marin Jankovski | 2014-09-10 | 1 | -1/+1 |
| | |||||
* | Wrap arguments for `[ -z` in double quotes | Jacob Vosmaer | 2014-09-08 | 2 | -2/+2 |
| | |||||
* | Merge pull request #7258 from presto53/fix_init_scripts_interpreter | Jacob Vosmaer | 2014-09-08 | 2 | -14/+14 |
|\ | | | | | change bash to sh in web, background_jobs scripts | ||||
| * | fix bash-ism | Pavel Novitskiy | 2014-07-04 | 1 | -1/+1 |
| | | |||||
| * | change bash to sh | Pavel Novitskiy | 2014-07-04 | 2 | -13/+13 |
| | | |||||
* | | Delete mailer queue because we don't use sidekiq_mailer gem and now the ↵ | ling.su | 2014-07-04 | 1 | -1/+1 |
|/ | | | | mailer queue doesn't exist any more. | ||||
* | Be more selective when killing stray Sidekiqs | Jacob Vosmaer | 2014-06-12 | 1 | -1/+1 |
| | | | | | | Avoid the background_jobs script killing every process with 'sidekiq' in its argument string (e.g. 'rake gitlab:sidekiq start') by also catching the number (2) in 'sidekiq 2.14'. | ||||
* | Move from script to bin directory. | Marin Jankovski | 2014-05-27 | 4 | -0/+134 |
| | |||||
* | Setup default gitlab.yml with possibility to override default url via ↵ | Cyril Rohr | 2014-05-06 | 1 | -1/+8 |
| | | | | | | environment variable. This only applies to packaging with https://pkgr.io. | ||||
* | Add .pkgr.yml file for automated packaging on https://pkgr.io | Cyril Rohr | 2014-05-06 | 1 | -0/+16 |
| | |||||
* | Added executable file permission to binstubs | Jeroen van Baarsen | 2014-02-20 | 6 | -0/+0 |
| | |||||
* | Inserted spring in the binstubs | Jeroen van Baarsen | 2014-02-16 | 5 | -0/+40 |
| | | | | | | | | Now possible to run: `bin/rails` `bin/rspec` `bin/spinach` `bin/rake` | ||||
* | Rails uses bin folder we forgot to create it when upgrading | Jeroen van Baarsen | 2014-02-15 | 3 | -0/+11 |