Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/bin
AgeCommit message (Collapse)Author
2018-08-15Fix `bin/secpick` rainbow gem error, and security branch prefixingMichael Kozono
2018-07-11Truncate filenames created by bin/changelog to 140 charactersStan Hu
2018-06-26Improve shelling out in bin/changelogJacob Vosmaer (GitLab)
2018-05-15Merge branch 'blackst0ne-remove-spinach' into 'master'Rémy Coutable
Remove Spinach Closes #23036 See merge request gitlab-org/gitlab-ce!18869
2018-05-14Update secpickJames Lopez
2018-05-14Update secpickJames Lopez
2018-05-14Remove bin/spinachblackst0ne
2018-05-14Update secpick to use security branchesJames Lopez
2018-04-17add initial dev task template for working on a security issueJames Lopez
2018-04-10[Rails5] Fix running spinach testsblackst0ne
1. Add support for `RAILS5=1|true` for the `bin/spinach` command. 2. Synchronize used spinach versions both for rails4 and rails5. For rails5 it was accidently used spinach 0.10.1 instead of 0.8.10. That brought some problems on running spinach tests. Example of failure message: NoMethodError: undefined method `line' for #<Spinach::Scenario:0x000000000c86ba80> Did you mean? lines /builds/gitlab-org/gitlab-ce/features/support/env.rb:52:in `before_scenario_run'
2018-04-03[Rails5] Allow using `RAILS5` env with rspecblackst0ne
2018-03-22[Rails5] Update files by `rails app:update`blackst0ne
2018-02-20Generate EE changelog under ee/changelogs/unreleased/Rémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-01-26Remove bin/upgrade.rb as we don't seem to refer itLin Jen-Shin
2018-01-26We need Rails in order to use Gitlab.config anywayLin Jen-Shin
2018-01-19Add bin/profile-url tool and docsSean McGivern
2017-12-08Move the circuitbreaker check out in a separate processBob Van Landuyt
Moving the check out of the general requests, makes sure we don't have any slowdown in the regular requests. To keep the process performing this checks small, the check is still performed inside a unicorn. But that is called from a process running on the same server. Because the checks are now done outside normal request, we can have a simpler failure strategy: The check is now performed in the background every `circuitbreaker_check_interval`. Failures are logged in redis. The failures are reset when the check succeeds. Per check we will try `circuitbreaker_access_retries` times within `circuitbreaker_storage_timeout` seconds. When the number of failures exceeds `circuitbreaker_failure_count_threshold`, we will block access to the storage. After `failure_reset_time` of no checks, we will clear the stored failures. This could happen when the process that performs the checks is not running.
2017-10-13Add Performance category to the changelogZeger-Jan van de Weg
Resolves gitlab-org/gitlab-ce#36417
2017-08-11Merge branch '21949-add-type-to-changelog' into 'master'Robert Speicher
Let's start labeling our CHANGELOG entries Closes #21949 See merge request !11579
2017-08-09Don't require stackprof in GemfileRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-07-22Let's start labeling our CHANGELOG entriesJacopo
Added the type attribute to a CHANGELOG entry. When you create a new entry the software asks for the category of the change and sets the associated type in the file.
2017-06-23Remove bin/ci/upgrade.rb as not working allTakuya Noguchi
2017-03-21Add gitaly source installation instructionsJacob Vosmaer
2017-01-10remove remaining vestiges of teaspoon test runnerMike Greiling
2016-12-09Remove trailing whitespace when generating changelog entryAdam Niedzielski
2016-12-02Simplify `branch_name` in bin/changelogRobert Speicher
The `--short` option has existed since at least 1.8.1: https://git-scm.com/docs/git-symbolic-ref/1.8.1
2016-11-29Add StackProf to the Gemfile, along with a utility to get a profile for a specNick Thomas
2016-11-03Update help banner for bin/changelogRobert Speicher
[ci skip]
2016-11-03Add a `--force` option to bin/changelogRobert Speicher
2016-10-31Add specs for ChangelogOptionParser in bin/changelogRobert Speicher
2016-10-31Add a bin/changelog scriptRobert Speicher
2016-10-21Re-organize queues to use for SidekiqYorick 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 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
2016-06-17Use ENABLE_SPRING to use it by defaultKamil Trzcinski
2016-04-28Use 'exec' in Unicorn and Sidekiq launch scriptsJacob Vosmaer
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.
2016-04-22Re-generate Spring binstubs for updated version of SpringRobert Speicher
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'
2016-04-14Use rake db:reset instead of db:setupYorick Peterse
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".
2016-01-15Direct sidekiq boot output to log fileJacob Vosmaer
This behavior got lost in the previous commit.
2016-01-14Improve bin/ launchersJacob Vosmaer
2015-12-08Add 'resume' capability to parallel-rsync-reposJacob Vosmaer
2015-12-08Merge branch 'master' into sync-all-reposJacob Vosmaer
2015-12-03Fix mailer queueValery Sizov
2015-11-25Rails update to 4.2.4Valery Sizov
2015-10-05Add RSYNC variable to parallel-rsync-reposJacob Vosmaer
2015-09-25Add parallel-rsync-repos script and start docsJacob Vosmaer
2015-09-09Merge branch 'master' into ci-and-ce-sitting-in-a-tree-k-i-s-s-i-n-gDmitriy Zaporozhets
2015-08-27Properly daemonize the mail_room processJacob Vosmaer
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.
2015-08-26Groundwork for merging CI into CEDouwe Maan
2015-08-20Fix bin/mail_room.Douwe Maan
2015-08-19Update init scripts.Douwe Maan
2015-06-04Remove GuardRobert Speicher
None of the GitLab B.V. developers were using it.