From 00f98c6d1b59875e8d7cea139c0dc0a016cfe3f8 Mon Sep 17 00:00:00 2001 From: Franck Galpin <franck.galpin@interdigital.com> Date: Wed, 24 Aug 2022 10:03:13 +0200 Subject: [PATCH] correct the gitlab CI to init the submodule before build --- .gitlab-ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 48c3d92000..acfecf9008 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -3,6 +3,8 @@ stages: .build_template: stage: build + variables: + - GIT_SUBMODULE_STRATEGY: normal script: - make realclean - make all @@ -13,6 +15,7 @@ stages: variables: - $CI_PROJECT_URL == 'https://vcgit.hhi.fraunhofer.de/jvet/VVCSoftware_VTM' - $CI_MERGE_REQUEST_TARGET_BRANCH_NAME == 'master' + .build_template_linux: extends: .build_template -- GitLab