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
2019-06-25Fix reports jobs timing out because of cachePhilippe Lafoucrière
Note: This commit relies on https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/26801 which brings support to multiple extends. While `cache: {}` can disable a cache being set globally, it doesn't work with extends, which will perform a reverse deep merge based on the keys. The cache defined in the base `.default-cache` job won't be disabled in the report jobs. As a side effect, the `code_quality`, `sast`, and `dependency_scanning` jobs are running on a larger code base than expected, leading to timeouts. fixes https://gitlab.com/gitlab-org/gitlab-ee/issues/11303 fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/60879 fixes https://gitlab.com/gitlab-org/gitlab-ee/issues/12021
2019-06-25Exclude docs-only branches from jobEvan Read
2019-06-25Add Markdown lintingEvan Read
Also adds and one linting rule and makes project conform to it.
2019-06-19Merge branch '52442-minimal-remove-mysql-support' into 'master'Robert Speicher
Only support postgresql (minimal version) See merge request gitlab-org/gitlab-ce!29790
2019-06-19Only support postgresqlNick Thomas
MySQL support has been removed
2019-06-19Run static benchmarks from 'derailed_benchmarks'Aleksei Lipniagov
Two static memory benchmarks will be included in our CI pipeline. It will load gems from the Gemfile and check the amount of RAM consumed as well as the number of objects allocated and retained. Aggregated values will be included as 'metrics' into MRs while full reports will be downloadable as job artifacts.
2019-06-18Merge branch 'remove-node-modules-from-artifacts' into 'master'Rémy Coutable
Only push to assets-compile-cache when in master See merge request gitlab-org/gitlab-ce!28854
2019-06-17Run CI migrations since 11.11.0Yorick Peterse
One can not upgrade straigt from 9.3 to 12.0, due to the schema changes being backported. Instead, one must first upgrade to 11.11.X. Omnibus already enforces this, and our online upgrade guidelines also cover this. By changing the CI config we don't have to adjust the backport migration to handle a migration path that one can not take.
2019-06-17Only push to assets-compile-cache in masterHeinrich Lee Yu
Also update dependencies to match updated job names
2019-06-17Bump assets-compile-cache to cleanup old filesHeinrich Lee Yu
2019-06-14Merge branch 'leipert-node-12' into 'master'Mike Greiling
Update to node@12 See merge request gitlab-org/gitlab-ce!29659
2019-06-14Update to node@12Lukas Eipert
This updates our build images to use node@12. We are also adding a sentence to the from-source installation that while we require a minimum version of node@8, we also recommend node@12. Last but not least, we change the version of node in the .nvmrc so that developers using nvm can automatically use node@12 with the project
2019-06-12Update CODEOWNERS to add mikelewis for doc pathMike Lewis
2019-06-11Add eread as CODEOWNER for doc dirEvan Read
2019-06-05Merge branch 'qa-allow-review-jobs-to-fail' into 'master'Rémy Coutable
Allow the review-deploy and review-qa-* jobs to fail for now See merge request gitlab-org/gitlab-ce!29208
2019-06-05Merge branch '10403-harden-against-gitlab-assets-compile-transient-failures' ↵Stan Hu
into 'master' Harden gitlab:assets:compile against transient network failures Closes gitlab-ee#10403 See merge request gitlab-org/gitlab-ce!29211
2019-06-05Add yaml lintKamil Trzciński
This commit adds CI job that validates all `*.yml` with `yamllint`. This commit fixes all offenses present in repository.
2019-06-05Allow the review-deploy and review-qa-* jobs to fail for nowRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-06-05Harden gitlab:assets:compile against transient network failuresNick Thomas
2019-06-05Add code owners for security templatesOlivier Gonzalez
2019-06-04Adds issue template for feature flag roll outJames Edwards-Jones
2019-06-03Generate knapsack report for review-qa-allMark Lapierre
Add knapsack qa report and use it to run tests in parallel Use the RSpec runner with knapsack The way the Knapsack runner uses exec to start rspec seems incompatible with the way we expect it to work. Plus, it requires specifying KNAPSACK_TEST_DIR. Instead, we use knapsacks AllocatorBuilder to select the spec files to run, and then start rspec as normal, via RSpec::Core::Runner.run This also means we can incorporate tags. Let the job run automatically Include KNAPSACK_TEST_FILE_PATTERN in vars Check all defined knapsack env vars before requiring knapsack
2019-05-30Merge branch 'tkuah-codeowners' into 'master'Mayra Cabrera
Add @tkuah to CODEOWNERS Closes gitlab-com/www-gitlab-com#3357 See merge request gitlab-org/gitlab-ce!28917
2019-05-30Add @tkuah to CODEOWNERSThong Kuah
Re-sort alphabetically
2019-05-30Remove Google apt source from gitlab:assets:compile stepStan Hu
Chrome is already installed in this image, and the apt-get update is only used to install jq.
2019-05-24Merge branch '62151-broken-master' into 'master'Kamil Trzciński
Fix MySQL CI jobs Closes #62156 and #62151 See merge request gitlab-org/gitlab-ce!28593
2019-05-23Merge branch 'bvl-reenable-code-owners' into 'master'Douwe Maan
Re-enable codeowners See merge request gitlab-org/gitlab-ce!28585
2019-05-23Re-enable codeowners by moving the file backBob Van Landuyt
And add myself as a ruby maintainer, since I forgot about that.
2019-05-22Fix MySQL CI jobsRémy Coutable
[run mysql] Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-05-22Revert "Merge branch 'revert-04c3c6dd' into 'master'"Rémy Coutable
This reverts commit 744f1f2e7037f5c70c3168d9e2e89b1c327465d2, reversing changes made to c4d930e5f54e7da07c80cc028dfc0f5c08719146.
2019-05-22Move package-and-qa to review stage from qa stageLin Jen-Shin
This way even if review-deploy failed we can still run it.
2019-05-20Fix typos in the whole gitlab-ce projectYoginth
2019-05-17Issue template grammar improvementsBrendan O'Leary 🐢
2019-05-15Disallow the review-deploy and review-qa-smoke jobs to failRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-05-08Upgrade Ruby version to 2.6.3Stan Hu
Ruby 2.6 offers better performance and memory usage: https://www.rubyguides.com/2018/11/ruby-2-6-new-features/ Part of https://gitlab.com/gitlab-org/gitlab-ce/issues/57323
2019-05-07Merge branch 'winh-refactoring-issue-template-docs' into 'master'Stan Hu
Add issue template for refactorings See merge request gitlab-org/gitlab-ce!27889
2019-05-06Add Mayra Cabrera to codeownersMayra Cabrera
Per the second step of: https://gitlab.com/gitlab-com/www-gitlab-com/issues/3351
2019-05-06Move the build-qa-image to the test stageRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-05-02Use PostgreSQL 10.7Balasankar "Balu" C
Signed-off-by: Balasankar "Balu" C <balasankar@gitlab.com>
2019-05-02Update ENV vars syntax for reports.ci.ymlVictor Zagorodny
2019-05-02Escape the usernames to avoid mentionsToon Claes
Avoid people and groups getting mentioned unintentionally by surrounding the names with backticks.
2019-04-30Add issue template for refactoringsWinnie Hellmann
2019-04-28Upgrade CI images to use Chrome V73Stan Hu
Attempt to solve issues such as https://gitlab.com/gitlab-org/gitlab-ce/issues/60953.
2019-04-26CI: Fix upload of screenshots in gitlab:ui:visualPeter Leitzen
Before this commit uploading of screenshots failed with WARNING: tests/__image_snapshots__/: no matching files ERROR: No files to upload ERROR: Job failed: exit code 1 After this commit it works again Uploading artifacts... gitlab-ui/tests/__image_snapshots__/: found 90 matching files Uploading artifacts to coordinator... ok
2019-04-26Improve Review Apps scheduled cleanupRémy Coutable
By moving it to the `build` stage and adding `action: stop` to it. Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-04-24Organize better Review Apps and QA jobsRémy Coutable
Also, play manual jobs once dependency jobs are done instead of polling for the dependent jobs to be finished. Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-04-19Merge branch 'retry-review-deploy-twice' into 'master'Lin Jen-Shin
Retry the review-deploy job twice and make the Review App cleanup more efficient See merge request gitlab-org/gitlab-ce!27489
2019-04-19Merge branch ↵Grzegorz Bizon
'58663-use-include-template-syntax-for-including-the-code-quality-job' into 'master' Resolve "Use include template syntax for including the Code Quality job" Closes #58663 See merge request gitlab-org/gitlab-ce!27448
2019-04-19Make the Review App cleanup more efficientRémy Coutable
Ensure that the cleanup starts right away. Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-04-19Retry the review-deploy job twiceRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>