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-03-22Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-03-21Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-03-02Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-03-02Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-02-23Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-02-09Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-01-19Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-09-07Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-07-14Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-07-01Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-06-24Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-05-19Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-02-24Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-01-10Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-12-16Add latest changes from gitlab-org/gitlab@masterogolowinski-master-patch-80898GitLab Bot
2019-12-13Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-31Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-27Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-04-12Add frozen_string_literal to spec/servicesThong Kuah
Probably useful as we often move these files to "new" files.
2019-01-04Add config_options|variables to BuildMetadataKamil Trzciński
These are data columns that store runtime configuration of build needed to execute it on runner and within pipeline. The definition of this data is that once used, and when no longer needed (due to retry capability) they can be freely removed. They use `jsonb` on PostgreSQL, and `text` on MySQL (due to lacking support for json datatype on old enough version).
2018-12-27Fix spec that depended on 0 lock_version being unsupportedDouwe Maan
2018-11-05Allow to make builds soft-archived.Kamil Trzciński
The soft-archived builds cannot be run after some deadline time. The intent is to aggressively recycle old builds after sometime.
2018-08-01Fix spec failuresKamil Trzciński
2018-08-01Add specs for unsupported runnerKamil Trzciński
2018-07-05Web Terminal Ci BuildFrancisco Javier López
2018-05-31Fix `register_job_service_spec` failuresKamil Trzciński
2018-05-31Fix weird Rails bug that leads to `runner_id=null` in SQL queryKamil Trzciński
2018-05-31Refactor validations and make runner factory by default to be instance-wide ↵Kamil Trzciński
runner
2018-05-31Improve runner_type validations for Ci::RunnerDylan Griffith
2018-05-03Fix Project#group_runners_enabled as it was doing nothingDylan Griffith
2018-05-01Use group_type? where possible during transition periodDylan Griffith
2018-04-30Revert fair scheduling for all buildsDylan Griffith
Per discussion in https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/9646#note_65730532 this logic is being optimized elsewhere and it will simplify things if we make less changes to this code right now.
2018-04-23simplify runner selectionAlexis Reigel
don't differentiate between the different runner types, instead we rely on the Runner model to provide the available projects. scheduling is now applied to all runners equally.
2018-04-23select group runners also in register_job_serviceAlexis Reigel
2018-04-10Protect register_job_service from pending job with queued_at=nilTomasz Maczukin
2018-04-10Partition job_queue_duration_seconds with jobs_running_for_projectTomasz Maczukin
2018-04-10Revert "Merge branch 'improve-jobs-queuing-time-metric' into 'master'"Kamil Trzciński
This reverts merge request !17730
2018-04-05Partition job_queue_duration_seconds with jobs_running_for_projectTomasz Maczukin
2017-12-14Replace factory_girl_rails with factory_bot_railsRémy Coutable
I've followed the [upgrade guide](https://github.com/thoughtbot/factory_bot/blob/4-9-0-stable/UPGRADE_FROM_FACTORY_GIRL.md) and ran these two commands: ``` grep -e FactoryGirl **/*.rake **/*.rb -s -l | xargs sed -i "" "s|FactoryGirl|FactoryBot|" grep -e factory_girl **/*.rake **/*.rb -s -l | xargs sed -i "" "s|factory_girl|factory_bot|" ``` Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-12-14Dependencies Validator fails when depended job is `manual`Shinya Maeda
2017-12-12ActiveRecord::StaleObjectError: Attempted to update a stale object: Ci::BuildShinya Maeda
2017-12-07Test for both ci_disable_validates_dependencies true/falseShinya Maeda
2017-12-07Change feature flag to ci_disable_validates_dependencies to enable it as defaultShinya Maeda
2017-12-06Fix testsShinya Maeda
2017-12-06Fix lintShinya Maeda
2017-12-06Add case when artifacts have not existed on dependenciesShinya Maeda
2017-12-06Fail jobs if its dependency is missingShinya Maeda
2017-12-05Perform SQL matching of Build&Runner tags to greatly speed-up job pickingKamil Trzcinski
2017-09-03Fix spec on egister_job_service_spec.rbShinya Maeda
2017-09-03Fix specShinya Maeda