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
2020-12-21Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-10-08Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-10-05Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-10-02Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-09-18Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-09-17Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-09-15Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-09-07Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-08-28Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-08-21Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-07-15Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-07-13Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-07-10Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-07-09Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-06-30Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-06-24Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-06-08Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-05-30Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-05-30Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-05-19Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-05-16Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-05-15Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-05-12Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-04-23Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-03-24Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-03-17Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-03-14Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-03-04Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-02-26Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-02-12Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-02-06Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-01-28Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-01-17Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-01-16Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-01-10Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-01-08Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-12-21Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-12-19Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-12-16Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-12-12Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-15Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-10Remove ignore_column occurence in CE codeDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2019-08-01Add support for DAGKamil Trzciński
This implements the support for `needs:` keyword as part of GitLab CI. That makes some of the jobs to be run out of order.
2019-07-29Add Job specific variablesMatija Čupić
Adds Job specific variables to facilitate specifying variables when running manual jobs.
2019-06-17Backport the EE schema and migrations to CEYorick Peterse
This backports all EE schema changes to CE, including EE migrations, ensuring both use the same schema. == Updated tests A spec related to ghost and support bot users had to be modified to make it pass. The spec in question assumes that the "support_bot" column exists when defining the spec. In the single codebase setup this is not the case, as the column is backported in a later migration. Any attempt to use a different schema version or use of "around" blocks to conditionally disable specs won't help, as reverting the backport migration would also drop the "support_bot" column. Removing the "support_bot" tests entirely appears to be the only solution. We also need to update some foreign key tests now that we have backported the EE columns. Fortunately, these changes are very minor. == Backporting migrations This commit moves EE specific migrations (except those for the Geo tracking database) and related files to CE, and also removes any traces of the ee/db directory. Some migrations had to be modified or removed, as they no longer work with the schema being backported. These migrations were all quite old, so we opted for removing them where modifying them would take too much time and effort. Some old migrations were modified in EE, while also existing in CE. In these cases we took the EE code, and in one case removed them entirely. It's not worth spending time trying to merge these changes somehow as we plan to remove old migrations around the release of 12.0, see https://gitlab.com/gitlab-org/gitlab-ce/issues/59177 for more details.
2019-05-31Remove legacy artifact related codeShinya Maeda
We've already migrated all the legacy artifacts to the new realm, which is ci_job_artifacts table. It's time to remove the old code base that is no longer used.
2019-04-16Merge branch 'mc/feature/custom-metrics-ce' into 'master'Kamil Trzciński
Backport metrics report type See merge request gitlab-org/gitlab-ce!26798
2019-04-16Backport changes from EEMatija Čupić
This backports the changes from https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/10452
2019-04-12Add frozen_string_literal to spec/servicesThong Kuah
Probably useful as we often move these files to "new" files.
2019-04-10Add optional IGNORE_ACCESSORS in RetryBuildServiceMatija Čupić