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
2018-11-12Upgrade to node v10.xLukas Eipert
2018-11-10Remove unnecessary job dependenciesLukas Eipert
2018-11-09Ensure we create the secrets at the right timeRémy Coutable
In `deploy`, if the previous deployment failed, we delete/cleanup all the objects related to the release, including secrets. The problem is that if we create the root password before that, it will be then recreated during the deploy with a random value! By creatigng the secret just before actually deplying a new release, we ensure that it won't be overriden. Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-10-31Merge branch 'add-docker-assets-image' into 'master'Robert Speicher
Build an assets only container See merge request gitlab-org/gitlab-ce!22235
2018-10-31Build a docker container storing only the frontent assetsIan Baum
* Run as part of gitlab:assets:compile job * Will be used by omnibus-gitlab and the CNG images to avoid compiling multiple times https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/22235
2018-10-30Renaming Secret Variables in the codebaseMarcel Amirault
2018-10-25Review apps cleanup schedule runs on masterMarin Jankovski
2018-10-25Merge branch 'sh-bump-ruby-2.4.5' into 'master'Robert Speicher
Upgrade to Ruby 2.4.5 See merge request gitlab-org/gitlab-ce!22484
2018-10-24Remove unused rails5-variablesLin Jen-Shin
They're no longer used and have no effect
2018-10-24Upgrade to Ruby 2.4.5Stan Hu
2018-10-23Fix the schedule:review_apps_cleanup jobRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-10-23Fix indentation, and move task to proper stageIan Baum
* Use 2 space indentation in review-apps.sh script * Move automated_review_cleanup back to build stage
2018-10-23Add review app to gitlab-ceIan Baum
* Uses the same supporting code as used in EE * Includes automated cleanup * Install external-dns helm chart to review apps cluster if it isn't already * Adds variables REVIEW_APPS_AWS_SECRET_KEY and REVIEW_APPS_AWS_ACCESS_key * review-apps-ce uses a different cipher
2018-10-23Merge branch 'improve-review-apps' into 'master'Robert Speicher
Improve review apps Closes #6875 See merge request gitlab-org/gitlab-ee!6665 [ci skip]
2018-10-22Run karma for qa-* branchesRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-10-04Change image for docs lintingEvan Read
2018-10-02Merge branch 'test-against-postgres-96' into 'master'Robert Speicher
Use minimum recommended PostgreSQL version to run our tests See merge request gitlab-org/gitlab-ce!22060
2018-10-02Use minimum recommended PostgreSQL version to run our testsGabriel Mazetto
2018-10-02Merge branch 'leipert-frontend-danger' into 'master'Mike Greiling
Danger checks for the frontend See merge request gitlab-org/gitlab-ce!21859
2018-10-01Update link to documentation testingFabio Busatto
2018-09-29Danger check for ignored eslint rulesLukas Eipert
We disabled a lot of eslint rules on a per-file basis. This checks touched files for those and reminds you to re-enable the rules and fix them.
2018-09-28Danger check for unprettified JavaScriptLukas Eipert
This adds a Dangerfile which executes `prettier` to find out if someone touched Frontend files and forgot to run it on their current branch.
2018-09-25Fix karma out-of-memory failuresMike Greiling
2018-09-24Refactor scripts/trigger-build and post a commit note with the downstream ↵Rémy Coutable
pipeline URL for omnibus triggers Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-09-20Move the cloud-native-image trigger job into the test stageDJ Mountney
This is because the CNG pipeline now relies on the assets compiled here in the gitlab:assets:compile job (It waits up to 30 minutes for them) Without this change, the cloud native job was holding up the pipeline, preventing the assets compile job from being run.
2018-09-12Generate JUnit report for Karma testsWinnie Hellmann
2018-09-07Provide a cached archive of compiled assetsIan Baum
2018-09-07forward build image to Chrome 69Lukas Eipert
2018-09-04Merge branch 'junit-results' into 'master'Rémy Coutable
Enable JUnit results for rspec See merge request gitlab-org/gitlab-ce!21449
2018-09-03Enable JUnit results for rspecKamil Trzciński
2018-09-02Run review-docs-cleanup job for gitlab-org repos onlyTakuya Noguchi
2018-08-28Move package-and-qa to the test phaseSean McGivern
The problem is this: when each phase starts, it checks if all jobs in earlier phases are complete. package-and-qa is slow. As build is the first phase, if you trigger package-and-qa before the prepare phase is finished, the entire test phase will be blocked until package-and-qa completes, which isn't what we want. But equally, if build came _after_ test, then package-and-qa couldn't be started until the tests were finished. Putting it in the same stage as the tests means we can have our cake and eat it.
2018-08-17Update .gitlab-ci.ymlShinya Maeda
2018-08-09Disable danger in preparation branchesBob Van Landuyt
Most of these validations don't apply to preparation branches and they cause a lot of noise in the merge request. Therefore disabling danger when the branches look like branches that could be for a preparation MR.
2018-07-26Update the image for the 'danger-review' jobRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-07-24Add Dangerfile for frozen_string_literalgfyoung
Checks that new Ruby files will enable frozen string literal. Partially addresses #47424.
2018-07-17Move the 'danger-review' job to the test stage and allow it to failRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-07-16Merge branch 'update-git-to-2-18-0' into 'master'Stan Hu
Update Git version to 2.18.0 See merge request gitlab-org/gitlab-ce!20489
2018-07-16Merge branch 'set-build-token-CN' into 'master'Rémy Coutable
Add the CI Job trigger as the build trigger Closes charts/gitlab#586 See merge request gitlab-org/gitlab-ce!20619
2018-07-16Merge branch 'jprovazn-rails-ci' into 'master'Rémy Coutable
Trigger rails5 tests if variable is set See merge request gitlab-org/gitlab-ce!20609
2018-07-16Trigger rails5 tests either by variable or ref nameJan Provaznik
2018-07-14Allow Danger step to failStan Hu
Currently the Danger processing is producing false positives when master is merged into a branch. Until #49175 is fixed, we should allow it to fail.
2018-07-13Add the CI Job trigger as the build triggerDJ Mountney
For building CNG images on tag
2018-07-13Update .gitlab-ci.ymlJames Lopez
2018-07-11Improve Danger files after first reviewRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-07-11Start to use Danger for automating MR reviewsRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-07-06Use the correct script location for the build trigger scriptDJ Mountney
2018-07-05Merge branch 'docs/use-ref-slug-for-docs-review' into 'master'Rémy Coutable
Refactor the review-docs workflow See merge request gitlab-org/gitlab-ce!20365
2018-07-05Simplify downstream branch nameAchilleas Pipinellis
2018-07-05Update the cloud-native trigger call in the UIDJ Mountney