From eb33309050d083d90257951272fa0d1217fc729c Mon Sep 17 00:00:00 2001 From: Jordan Petridis Date: Tue, 30 Nov 2021 16:45:07 +0200 Subject: [PATCH] ci: Avoid fetching tags for build jobs Avoid fetching tags since we don't need them for builds. Only caveat might be what happens when a pipeline from a tag is triggered Part-of: --- .gitlab-ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 411ba7ad06..dc5791db3e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -88,10 +88,14 @@ workflow: # https://docs.gitlab.com/ee/ci/yaml/index.html#switch-between-branch-pipelines-and-merge-request-pipelines rules: - if: '$CI_PIPELINE_SOURCE == "merge_request_event"' + variables: + GIT_FETCH_EXTRA_FLAGS: '--no-tags' - if: $CI_COMMIT_BRANCH && $CI_OPEN_MERGE_REQUESTS && $CI_PIPELINE_SOURCE == "push" when: never - if: '$CI_COMMIT_TAG' - if: '$CI_COMMIT_BRANCH' + variables: + GIT_FETCH_EXTRA_FLAGS: '--no-tags' # # Global CI policy