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-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-17Don't fail the job if the Review App doesn't deploy properlyRémy Coutable
It seems the deploy function causes the job to fail if it doesn't succeed. That wasn't the intent as we want to curl the Review App after the deploy finished (even if it failed) because sometimes the Review App is just a bit long to be ready. This change wraps the Review App deployment with "set +e"/"set -e" to ensure that the job doesn't fail right away if the deploy fails. Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-04-09Conform scripts/review_apps/review-apps.sh to shellcheckRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-04-09Poll Review App after it's deployed to ensure it's accessibleRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-04-01Merge branch 'enable-rubocop-application-record' into 'master'Lin Jen-Shin
Document ApplicationRecord / pluck_primary_key Closes #59690 See merge request gitlab-org/gitlab-ce!26764
2019-03-29Document ApplicationRecord / pluck_primary_keyNick Thomas
We also enable the rubocop that makes it mandatory
2019-03-28Add more logging in the Review Apps deployment stepsRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-03-26First iteration of GitLab own StylelintsTim Zallmann
DRYed the code Changed new rules to warnings Manual prettified and added stylelint rules
2019-03-19Fix the .review-deploy-base job so that env variables are passedRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-03-15Use gitlab-ce as default project name in asset image buildingBalasankar "Balu" C
Signed-off-by: Balasankar "Balu" C <balasankar@gitlab.com>
2019-03-15Set asset image name properly for all possible CE/EE project namesBalasankar "Balu" C
Signed-off-by: Balasankar "Balu" C <balasankar@gitlab.com>
2019-03-13Run rubocop -aNick Thomas
2019-03-12Tag asset docker image with GitLab version alsoBalasankar "Balu" C
Signed-off-by: Balasankar "Balu" C <balasankar@gitlab.com>
2019-03-12Batch insert CI rspec_profiling dataStan Hu
Instead of inserting a row after each example to an external database, we save the CI profiling reports into the `rspec_profiling` directory and insert the data in the update-tests-metadata CI stage. This should make each spec run faster and also reduce the number of PostgreSQL connections needed by concurrent CI builds. `scripts/insert-rspec-profiling-data` also inserts one file at a time via the PostgreSQL COPY command for faster inserts. The one side effect is that the `created_at` and `updated_at` timestamps aren't available since they aren't generated in the CSV. Closes https://gitlab.com/gitlab-org/gitlab-ee/issues/10154
2019-03-11Remove node 6 trailing comma supportMike Greiling
This removes trailing commas from node scripts which previously omitted them for compatiblity with node 6
2019-03-01Bring back Rugged implementation of find_commitStan Hu
This brings back some of the changes in https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/20339. For users using Gitaly on top of NFS, accessing the Git data directly via Rugged is more performant than Gitaly. This merge request introduces the feature flag `rugged_find_commit` to activate Rugged paths. There are also Rake tasks `gitlab:features:enable_rugged` and `gitlab:features:disable_rugged` to enable/disable these feature flags altogether. Part of four Rugged changes identified in https://gitlab.com/gitlab-org/gitlab-ce/issues/57317.
2019-02-21Move ChatOps docs from EE to coreJames Fargher
ChatOps used to be in the Ultimate tier.
2019-02-19Adds the commit sha to the pushed assetsJohn T Skarbek
* This will upload the sha of the docker image containing assets to assist with building specific sha builds in the future. * Addresses: https://gitlab.com/gitlab-org/release/framework/issues/51
2019-02-18Revert "Adds the commit sha to the pushed assets"John T Skarbek
This reverts commit 481938de847294018d202df13565c8dbc8a8ebc2.
2019-02-18Adds the commit sha to the pushed assetsJohn T Skarbek
* This will upload the sha of the docker image containing assets to assist with building specific sha builds in the future. * Addresses: gitlab-org/release/framework#51
2019-02-18add changelogs/README.mdElan Ruusamäe
this is to quickstart contributors who don't work daily on the codebase
2019-02-14Added Stylelint SetupTim Zallmann
Added stylelint to static-analysis Updated yarn dependencies CSS Fixes and rule adoptions of stylelint Added stylelint-scss Deduplicated yarn.lock to clear dependencies
2019-02-08Fix security harness scriptFelipe Artur
"[[" Syntax is not supported on debian based systems.
2019-02-05Add cache to the 'compile-assets' and 'gitlab:assets:compile' jobsRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-02-01Only use 2 replicas for nginx-ingress.controllerRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-02-01Don't install Prometheus in Review AppsRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-02-01Fine-tune Review Apps pod resource requestsRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-01-30Pass $CI_COMMIT_TAG as GITLAB_TAG to the CNG triggered pipelinesRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-01-24Introduce echoinfo for informationLin Jen-Shin
2019-01-24Use $CI_COMMIT_REF_NAME for tags in trigger-buildRémy Coutable
Also, pass GITLAB_VERSION and GITLAB_ASSETS_TAG to CNG triggered pipelines. Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-01-24Use $CI_COMMIT_REF_SLUG in review-apps.shRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-01-17[Review Apps] Don't exit when dependable job failsRémy Coutable
The function that retrieves the dependable job is pretty basic and retrieves the first job found with the matching name, but this job can be failed but then successfully retried. In that case, we would exit the depending job even though the dependable job actually succeeded (the second time). Let's simplify things, be optimistic and continue with the depending job even if the dependable job fails. That reverts to the original behavior. Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-01-10Merge branch ↵Rémy Coutable
'55323-review-apps-use-2-replicas-for-the-tiller-deploy-deployment' into 'master' [Review Apps] Use 2 replicas for the `tiller-deploy` Deployment Closes #55323 See merge request gitlab-org/gitlab-ce!23806
2019-01-07Merge branch 'exit-error-if-job-waited-fails' into 'master'Rémy Coutable
Exit `wait_for_job_to_be_done` as error if the job fails See merge request gitlab-org/gitlab-ce!23997
2018-12-31Stop using deprecated argument to `gem`Sean McGivern
`--no-rdoc` and `--no-ri` have been deprecated since RubyGems 2.0: https://github.com/rubygems/rubygems/blob/v2.0.0/History.txt#L43 They were finally removed in a recent release: https://github.com/rubygems/rubygems/pull/2354
2018-12-21Exit as error if job failsMark Lapierre
If a script is waiting for a job to be done and that job fails, exit with an error status so that the script doesn't continue with a prerequisite in an invalid state.
2018-12-19Use 2 replicas for the DeploymentRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-12-18Specify the 'sync' policy for the external-dns deploymentsRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-12-17Run gitlab:assets:compile on qa jobsMark Lapierre
Optionally compiling assets when needed for qa jobs proved unworkable so instead we fall back on compiling them for all qa jobs.
2018-12-17Merge branch 'rs-prepare-build-parity' into 'master'Rémy Coutable
CE-EE parity for prepare_build script See merge request gitlab-org/gitlab-ce!23819
2018-12-14Remove rails 4 support in CI, Gemfiles, bin/ and config/Jasper Maes
2018-12-13CE-EE parity for prepare_build scriptRobert Speicher
This removes EE-only directives in favor of file existence checks.
2018-12-13Remove CREATE_DB_USER variable in prepare_buildRobert Speicher
The last usage of this variable was removed in 0ab6469187285368d9f64f9ec67dbbcfa3e5a901.
2018-12-06[QA] Better retrieve job ID for a retried jobRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-12-05Removed the merge-train scriptYorick Peterse
We're moving the automatic merging logic to a separate repository, so there's no need in keeping this file around. [ci skip]
2018-12-04Automatically merge CE master into EE masterYorick Peterse
This sets up GitLab CI to automatically push CE master changes into EE master, or revert them if the changes cause merge conflicts. The CI configuration contains a single job to do this: `merge:master`. This job is executed for every push to master, and periodically using a CI schedule. The periodic job is necessary because incremental jobs may not be able to revert commits if newly added commits depend on these commits. By re-running the job periodically (including all changes since a large enough time frame), we can ensure that such commits are also reverted (if they still conflict at that time). The job runs in its own "merge" stage, _after_ the build and prepare stages, but _before_ running the tests. This ensures that randomly failing tests won't prevent code from being merged into EE. Running the stage after the "prepare" stage reduces the chances of the job reverting CE changes just because it ran before a corresponding EE MR was merged into EE master.
2018-11-29Pass GITLAB_REF_SLUG to CNG triggered pipelinesRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-11-28Merge branch '49570-add-review_qa-job' into 'master'Sean McGivern
Add an automatic job to run QA smoke tests against Review Apps Closes #49570 See merge request gitlab-org/gitlab-ce!22853
2018-11-26Override CI_COMMIT_REF_SLUG for QA branchesRémy Coutable
The `gitlab:assets:compile` job isn't run for the QA branches, thus there's no Docker image correspinding these branches in the registry. By overriding `CI_COMMIT_REF_SLUG` to `master` for QA branches, the `fetch-assets` job in the `omnibus-gitlab` pipeline will pull the `master` assets Docker image. Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-11-26Add a manual job to run QA against a Review AppRémy Coutable
1. Renames review to review-deploy. 2. Renames stop_review to review-stop. 3. Adds a build-qa-image job to the prepare stage and save the QA Docker image as artifact (example: https://gitlab.com/gitlab-org/gitlab-ce/-/jobs/120967019). 4. Adds a manual review-qa job to the test stage to run QA tests against the Review App (example: https://gitlab.com/gitlab-org/gitlab-ce/-/jobs/120967238). 5. Make the review-deploy job plays the review-qa job as soon as the Review App is deployed (example: https://gitlab.com/gitlab-org/gitlab-ce/-/jobs/120988775). 6. Updates the Review Apps documentation accordingly. Signed-off-by: Rémy Coutable <remy@rymai.me>