From 9aea94b3852fc2870492efc1d58a1b9a2b7c8c36 Mon Sep 17 00:00:00 2001 From: Pavel Hrdina Date: Tue, 14 Jul 2020 16:29:26 +0200 Subject: [PATCH] meson: ci: increase git clone depth to 1000 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Having limit set to 100 is in most cases perfect but sometimes there can be a larger series that will have more than 100 patches and it will make the check-dco job fail. Signed-off-by: Pavel Hrdina Reviewed-by: Ján Tomko Reviewed-by: Peter Krempa Reviewed-by: Neal Gompa --- .gitlab-ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9e6618532a..1b046bd320 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -508,3 +508,5 @@ check-dco: except: variables: - $CI_PROJECT_NAMESPACE == 'libvirt' + variables: + GIT_DEPTH: 1000