- Oct 30, 2019
-
-
GitLab Bot authored
-
- Sep 13, 2019
-
-
GitLab Bot authored
-
- May 21, 2019
-
-
Matija Čupić authored
-
- Feb 20, 2019
-
-
James Fargher authored
ChatOps used to be in the Ultimate tier.
-
- Jan 21, 2019
-
-
Yorick Peterse authored
This simply moves the logic from the "perform" method into a separate "process_build" method, allowing EE to more easily extend this behaviour.
-
- Nov 15, 2018
-
-
yukihir0 authored
-
- Oct 02, 2018
-
-
-
commit 9d9594ba20097dc4598f7eb42a9f9d78d73eae54 Author: Shinya Maeda <shinya@gitlab.com> Date: Thu Sep 13 20:18:31 2018 +0900 Cancel scheduled jobs commit f31c7172e07a9eb03b58c1e62eaa18cda4064aa6 Author: Shinya Maeda <shinya@gitlab.com> Date: Thu Sep 13 11:18:42 2018 +0900 Add Ci::BuildSchedule commit fb6b3ca638f40f9e1ee38b1fdd892bda4f6fede7 Author: Shinya Maeda <shinya@gitlab.com> Date: Wed Sep 12 20:02:50 2018 +0900 Scheduled jobs
-
- Sep 11, 2018
-
-
Yorick Peterse authored
This whitelists all existing offenses for the various CodeReuse cops, of which most are triggered by the CodeReuse/ActiveRecord cop.
-
- Jun 27, 2018
-
-
gfyoung authored
-
- May 01, 2018
-
-
Shinya Maeda authored
-
- Apr 30, 2018
-
-
Shinya Maeda authored
-
- Apr 26, 2018
-
-
Shinya Maeda authored
-
- Apr 24, 2018
-
-
Kamil Trzcińśki authored
-
Shinya Maeda authored
-
- Mar 06, 2018
-
-
Shinya Maeda authored
Integrate two workers into one ArchiveTraceWorker with pipeline_background queue. This queue takes loqer precedence than pipeline_default.
-
- Feb 28, 2018
-
-
Kamil Trzcińśki authored
EE: Trace as artifacts (FileStorage and ObjectStorage) Closes #4171 See merge request gitlab-org/gitlab-ee!4258
-
- Feb 06, 2018
-
-
Shinya Maeda authored
-
Shinya Maeda authored
-
Shinya Maeda authored
-
Shinya Maeda authored
-
- Dec 12, 2017
-
-
Douwe Maan authored
-
- Dec 05, 2017
-
-
Douwe Maan authored
-
- Oct 05, 2017
-
-
Alessio Caiazza authored
-
- Aug 21, 2017
-
-
Grzegorz Bizon authored
-
- Oct 21, 2016
-
-
Yorick Peterse authored
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
-
- Oct 14, 2016
-
-
Kamil Trzcińśki authored
-
Grzegorz Bizon authored
-