From c5a0d0fc0961726e2f073639d621d48c2c85ae25 Mon Sep 17 00:00:00 2001 From: Jakub Jelen Date: Wed, 6 Mar 2024 17:48:11 +0100 Subject: [PATCH] ci: Move codespell to the review stage in file Signed-off-by: Jakub Jelen Reviewed-by: Andreas Schneider --- .gitlab-ci.yml | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 12381813..b0335cfa 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -100,6 +100,16 @@ workflow: ############################################################################### # Review # ############################################################################### +codespell: + stage: review + image: $CI_REGISTRY/$BUILD_IMAGES_PROJECT:$FEDORA_BUILD + script: + - codespell --ignore-words-list=keypair,sorce,ned,nd,ue + tags: + - shared + only: + - merge_requests + clang-format: variables: GIT_DEPTH: 100 @@ -538,6 +548,9 @@ freebsd/openssl_1.1.1/x86_64: tags: - windows - shared-windows + only: + - merge_requests + - branches except: - tags artifacts: @@ -615,14 +628,3 @@ coverity: when: on_failure paths: - obj/cov-int/*.txt - -############################################################################### -# Codespell # -############################################################################### -codespell: - stage: review - image: $CI_REGISTRY/$BUILD_IMAGES_PROJECT:$FEDORA_BUILD - script: - - codespell --ignore-words-list=keypair,sorce,ned,nd,ue - tags: - - shared