From afc1dd1ea34067bad45a3a76696c7457c317ad85 Mon Sep 17 00:00:00 2001 From: Dimitri Papadopoulos Orfanos <3350651-DimitriPapadopoulos@users.noreply.gitlab.com> Date: Wed, 23 Jul 2025 09:10:17 +0200 Subject: [PATCH] Set a decently large git depth The GIT_DEPTH variable overrides the repository settings and should fix CI jobs in all forked repositories. Signed-off-by: Dimitri Papadopoulos Orfanos <3350651-DimitriPapadopoulos@users.noreply.gitlab.com> --- .gitlab-ci.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 81c3f196..c322e290 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -77,6 +77,8 @@ static-analyzer/OpenSSL/Fedora: Fedora/GnuTLS: stage: test-first + variables: + GIT_DEPTH: 500 script: - ./autogen.sh - ./configure --with-java --disable-dsa-tests --without-gnutls-version-check --enable-ppp-tests CFLAGS=-g @@ -108,6 +110,8 @@ Fedora/GnuTLS: Fedora/OpenSSL: stage: test-first image: $CI_REGISTRY/$BUILD_IMAGES_PROJECT:$FEDORA_BUILD + variables: + GIT_DEPTH: 500 script: # Re-enable DSA since we test it - update-crypto-policies --set LEGACY @@ -315,6 +319,8 @@ CentOS9/OpenSSL: Fedora/GnuTLS/ibmtss: stage: test-rest + variables: + GIT_DEPTH: 500 script: - ./autogen.sh - ./configure --with-java --disable-dsa-tests --without-gnutls-version-check --enable-ppp-tests CFLAGS=-g @@ -376,6 +382,8 @@ Fedora/GnuTLS/clang: Fedora/OpenSSL/clang: stage: test-rest image: $CI_REGISTRY/$BUILD_IMAGES_PROJECT:$FEDORA_BUILD + variables: + GIT_DEPTH: 500 script: # Re-enable DSA since we test it - update-crypto-policies --set LEGACY -- GitLab