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-09-03Switch back to the '--wait' flag for the 'helm upgrade' commandRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-09-03Remove a useless '.except-docs-qa' extension in 'package-and-qa-manual'Rémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-09-03Introduce a new 'package-and-qa-manual:master' jobRémy Coutable
This is needed because in `master`, the `gitlab:assets:compile` is created, but not the `gitlab:assets:compile pull-cache` job, and the `needs` keyword cannot take jobs that don't exist, thus we have to create a dedicated job for `master`, with `needs: ["build-qa-image", "gitlab:assets:compile"]` instead of `needs: ["build-qa-image", "gitlab:assets:compile pull-cache"]`. Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-09-03Ensure 'build-qa-image' is created for all pipelines except docs & qaRémy Coutable
This also makes 'package-and-qa-manual' created for 'master' because it's a valid use-case to run manual QA on 'master'. Without this change, no pipeline could be created for auto-deploy branches due to the following error: The form contains the following error: package-and-qa-manual: needs 'build-qa-image' Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-09-02Remove lint:javascript:report jobWinnie Hellmann
2019-09-02Change markdownlint wildcard formatMarcel Amirault
2019-08-30Merge branch 'move-ee-ci-config-to-ce' into 'master'Lin Jen-Shin
Don't use ee/.gitlab/ for CI config files See merge request gitlab-org/gitlab-ce!32351
2019-08-28Set dast job to extend .review-onlyKyle Wiebers
2019-08-28Merge branch 'add-sast-dast-artifact-path' into 'master'Rémy Coutable
Make sast & dast artifacts browseable See merge request gitlab-org/gitlab-ce!32219
2019-08-28Don't use ee/.gitlab/ for CI config filesYorick Peterse
These files are not available in CE, resulting in CI pipeline failures when trying to include these files. Since the job is already configured to only run on EE, we can just include it in both CE and EE.
2019-08-27Make sast & dast artifacts browseableKyle Wiebers
2019-08-27Don't set tags for the reports jobsRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-08-27Run markdownlint before Nanoc checksAchilleas Pipinellis
Make it simpler to run markdownlint by moving it before we do those hacks to run Nanoc.
2019-08-27Merge branch 'feature-branch-gather-jobs-data' into 'master'Stan Hu
Reduce the complexity of our CI configuration Closes #51367 and #65702 See merge request gitlab-org/gitlab-ce!31728
2019-08-27Change database maintainers group for codeownersAndreas Brandl
Aligning with backend maintainers, @gitlab-org/maintainers/database is now used for codeowners.
2019-08-26Reduce complexity of CI filesStan Hu
Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-08-26Change docs markdown linterMarcel Amirault
Change from ruby mdl to node markdownlint, add config file to root of project, delete old config file, update exceptions, and fix one doc that was didn't meet standards
2019-08-26Use the 'needs' keyword for 'package-and-qa-always' jobRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-08-26Dont run SAST on testsDennis Appelt
2019-08-22Add docs exceptions to two pipeline jobsMarcel Amirault
2019-08-21Ensure the dast job does not run on masterRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-08-20Enable DASTDennis Appelt
2019-08-19Update the 'build-qa-image' job to be built from project root contextRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-08-16Document cleanup of feature flag after deployHeinrich Lee Yu
2019-08-13Merge branch 'doc-update-template' into 'master'Ramya Authappan
Update link to test engineering docs See merge request gitlab-org/gitlab-ce!31681
2019-08-12Update GraphicsMagick from 1.3.29 to 1.3.33 for CI testsTakuya Noguchi
Signed-off-by: Takuya Noguchi <takninnovationresearch@gmail.com>
2019-08-10Update links in the issue templatesMek Stittri
2019-08-07Use Git 2.22 for GitLabZeger-Jan van de Weg
Part of: https://gitlab.com/gitlab-org/gitaly/issues/1715
2019-08-07Merge branch 'andr3-remove-iamphill-sadly' into 'master'Tim Zallmann
Remove iamphill from FE Maintainers in codeowners See merge request gitlab-org/gitlab-ce!31484
2019-08-06Disable Danger review for auto-deploy branchesRobert Speicher
2019-08-06Disable review apps for auto-deploy branchesRobert Speicher
These branches are frequently updated and automatically deployed to real environments, there's not really a benefit to building review apps for them that never get used.
2019-08-05Updates security templatesJohn Skarbek
2019-08-05Remove iamphill from FE Maintainers in codeownersAndré Luís
2019-08-05Merge branch 'bvl-use-group-codeowners' into 'master'Douwe Maan
Use groups in CODEOWNERS file See merge request gitlab-org/gitlab-ce!31477
2019-08-05Use groups in CODEOWNERS fileBob Van Landuyt
Let's dogfood https://gitlab.com/gitlab-org/gitlab-ce/issues/53182 That way we don't need to keep this file up to date.
2019-08-05Fix docs review-app stages in the pipelineMarcel Amirault
2019-08-04Upgrade PostgreSQL versions in CIStan Hu
* 9.6.11 -> 9.6.14 * 10.7 -> 10.9 This is done in preparation for upgrading PostgreSQL in Omnibus: https://gitlab.com/gitlab-org/omnibus-gitlab/merge_requests/3492
2019-08-02Don't run danger on stable branchesLukas Eipert
2019-08-02Use stable image version for dindLukas Eipert
See https://gitlab.com/gitlab-com/gl-infra/production/issues/1023 This also has been suggested by Tomasz in the MR
2019-08-02Update regex for docs branches in ciMarcel Amirault
Changes * to + to be more precise with acceptable branch names
2019-08-01Ensure review-stop can run even when the branch has been deletedRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-08-01Implement review suggestionsMark Lapierre
Make package-and-qa manual so the default `on_success` doesn't need to be set on package-and-qa-always. Remove unnecessary `except: []`
2019-07-30Remove the wait_for_review_app_to_be_accessible step from review-deployRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-07-23Merge branch '64756-re-enable-junit-reports' into 'master'Kamil Trzciński
Enable Junit reports Closes #64756 See merge request gitlab-org/gitlab-ce!30931
2019-07-23Merge branch 'sh-enable-bootsnap' into 'master'Douglas Barbosa Alexandre
Make Bootsnap available via ENABLE_BOOTSNAP=1 Closes #45230 See merge request gitlab-org/gitlab-ce!30963
2019-07-23Extend yamllint test to changelogsPeter Dave Hello
cc !30979
2019-07-22Use debian based node images for qa testsLukas Eipert
The alpine images do not contain a full build toolchain, so if the pre-compiled node-sass bindings cannot be downloaded, they will error and break master. By switching to the debian based images, we are able to compile in case the downloads are not available.
2019-07-22Fix syntax error in scriptHeinrich Lee Yu
2019-07-22Merge branch '64428-tests-are-not-split-optimally-by-knapsack' into 'master'Rémy Coutable
Upload new Knapsack report instead of merging Closes #64428 See merge request gitlab-org/gitlab-ce!30612
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