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
AgeCommit message (Collapse)Author
2021-02-18Add latest changes from gitlab-org/gitlab@13-9-stable-eev13.9.0-rc42GitLab Bot
2019-07-23Speed up boot timeSergey Alekseev
by removing an unused `begin ... rescue ... end` block. The block is no longer necessary after moving the bootsnap gem to the :default group in eedf735574b9f6c7c6c843943dd946ce84238236.
2019-07-19Make Bootsnap available via ENABLE_BOOTSNAP=1Stan Hu
Bootsnap speeds up Rails loading and now ships by default with Rails 5.2 apps. We should promote this to a default gem and test it out in production. This will also make it possible for the Helm Charts to take advantage of this. It appears that Bootsnap with Rails 5.2.3 and all the GitLab CE gems loads fine on an ARM platform now, so it's possible that https://gitlab.com/gitlab-org/gitlab-ce/issues/34799 has been resolved. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/45230
2019-06-28Get memory data after booting app in productionAleksei Lipniagov
Preload the app in `production` env, hit it with a single request, and gather total gem memory consumption data using `derailed exec perf:mem` from `derailed_benchmarks`. Present the result as MR metrics.
2019-06-28Revert "Merge branch '62722-boot-app-in-ci-and-check-memory' into 'master'"Rémy Coutable
This reverts merge request !30031
2019-06-28Get memory data after booting app in productionAleksei Lipniagov
Preload the app in `production` env, hit it with a single request, and gather total gem memory consumption data using `derailed exec perf:mem` from `derailed_benchmarks`. Present the result as MR metrics.
2018-12-14Remove rails 4 support in CI, Gemfiles, bin/ and config/Jasper Maes
2018-11-21Eliminate duplicated wordsTakuya Noguchi
Signed-off-by: Takuya Noguchi <takninnovationresearch@gmail.com>
2018-11-14Switch to Rails 5 by defaultJan Provaznik
* updates Gemfile * uses Rails 5 unless explicitly disabled
2018-07-20Add bootsnap to development/test bundle and enable it if availableGabriel Mazetto
This will enable bootsnap whenver the gem is available.
2018-03-22[Rails5] Update files by `rails app:update`blackst0ne
2017-07-19Update Prometheus gem to version that explicitly calls `munmap`Paweł Chojnacki
2017-07-10Revert "Merge branch 'update_bootsnap_1.1.1' into 'master'"Marin Jankovski
This reverts commit 83ec509ce43c56da601335de5b9ea4422c785560, reversing changes made to 57f0677ad854b7b17bd57e1e3b0ef542ce322b56.
2017-06-27Bump bootsnap to 1.1.1blackst0ne
2017-06-22Revert "Merge branch 'rs-bootsnap' into 'master'"Robert Speicher
This reverts commit 95138a9c16a2d1905354d0f46381b3822b37863d, reversing changes made to 66aad16d1aaa426237e52ef19385385566f194dc.
2017-06-19Do not enable prometheus metrics when data folder is not present.Pawel Chojnacki
+ Set defaults correctly only for when not in production or staging + set ENV['prometheus_multiproc_dir'] in config/boot.rb instead of config.ru Test prometheus metrics unmemoized
2017-06-16set ENV['prometheus_multiproc_dir'] in config/boot.rb instead of config.ruPawel Chojnacki
2017-06-09Add Bootsnap to all environments to reduce application startup timeRobert Speicher
2016-05-09Enable the Rubocop DeprecatedClassMethods copConnor Shea
This reports uses of `File.exists?` and `Dir.exists?`, which were both deprecated in Ruby and will eventually be removed in favor of `.exist?`. Also fixes all existing uses of the deprecated methods.
2011-10-09init commitgitlabhq