From 88fb967f99fe4be7a8c08f1c87cb93e00d674976 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9my=20Coutable?= <remy@rymai.me> Date: Thu, 3 Oct 2019 17:25:44 +0200 Subject: [PATCH] Increase GIT_DEPTH from 20 to 50 in the CI config MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Rémy Coutable <remy@rymai.me> --- .gitlab-ci.yml | 2 +- doc/development/pipelines.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index fdd4c2a64f6cf..2c623efcdedbc 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -15,7 +15,7 @@ variables: RAILS_ENV: "test" NODE_ENV: "test" SIMPLECOV: "true" - GIT_DEPTH: "20" + GIT_DEPTH: "50" GIT_SUBMODULE_STRATEGY: "none" GET_SOURCES_ATTEMPTS: "3" KNAPSACK_RSPEC_SUITE_REPORT_PATH: knapsack/report-master.json diff --git a/doc/development/pipelines.md b/doc/development/pipelines.md index 9d065406c90f1..212c4894a6efe 100644 --- a/doc/development/pipelines.md +++ b/doc/development/pipelines.md @@ -58,7 +58,7 @@ each pipeline includes the following [variables](../ci/variables/README.md): - `RAILS_ENV: "test"` - `NODE_ENV: "test"` - `SIMPLECOV: "true"` -- `GIT_DEPTH: "20"` +- `GIT_DEPTH: "50"` - `GIT_SUBMODULE_STRATEGY: "none"` - `GET_SOURCES_ATTEMPTS: "3"` - `KNAPSACK_RSPEC_SUITE_REPORT_PATH: knapsack/${CI_PROJECT_NAME}/rspec_report-master.json` -- GitLab