From a60d3d74328c0ffc72ca7b556895cbe1131d7800 Mon Sep 17 00:00:00 2001 From: Pierre-Marie de Rodat Date: Mon, 10 Jun 2024 19:13:39 +0200 Subject: [PATCH] Fix the CB to use the "master" branch of the gpr repository The default cloning branch was recently switched from "master" to "next", this breaking everything that depends on the "master" branch expecting it to be the default, such as our CB. --- utils/gitlab-ci-common.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/gitlab-ci-common.yml b/utils/gitlab-ci-common.yml index 6e58658d9..bdc8ca528 100644 --- a/utils/gitlab-ci-common.yml +++ b/utils/gitlab-ci-common.yml @@ -62,7 +62,7 @@ - git clone --depth 1 $ADASAT_GIT - git clone --depth 1 $AWS_GIT - git clone --depth 1 $GNATFORMAT_GIT - - git clone --depth 1 $GPR2_GIT + - git clone --depth 1 $GPR2_GIT -b master - git clone --depth 1 $LANGKIT_GIT - git clone --depth 1 $LIBADALANG_GIT - git clone --depth 1 $LIBADALANG_TOOLS_GIT