]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
gitlab-ci: Add running codespell
authorAndreas Schneider <asn@samba.org>
Wed, 22 Mar 2023 09:15:54 +0000 (10:15 +0100)
committerAndrew Bartlett <abartlet@samba.org>
Mon, 14 Aug 2023 22:44:58 +0000 (22:44 +0000)
Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Autobuild-User(master): Andrew Bartlett <abartlet@samba.org>
Autobuild-Date(master): Mon Aug 14 22:44:58 UTC 2023 on atb-devel-224

.gitlab-ci-main.yml
script/autobuild.py

index 51327e7dee8d066fc7da9603ce41255d6dad605e..729de8654bba7eec05387bb715feb97298506843 100644 (file)
@@ -257,7 +257,7 @@ samba-def-build:
   needs:
     - job: samba-def-build
       artifacts: true
-    - job: samba-shellcheck
+    - job: samba-codecheck
 
 samba-mit-build:
   extends: .shared_template_build_only
@@ -272,7 +272,7 @@ samba-mit-build:
   needs:
     - job: samba-mit-build
       artifacts: true
-    - job: samba-shellcheck
+    - job: samba-codecheck
 
 samba-h5l-build:
   extends: .shared_template_build_only
@@ -388,7 +388,7 @@ samba-fips:
   variables:
     SAMBA_CI_JOB_IMAGE: ${SAMBA_CI_CONTAINER_IMAGE_fedora38}
 
-samba-shellcheck:
+samba-codecheck:
   extends: .shared_template
   needs:
   variables:
index e074c39d3c0b3b8f7f4e44c3203ce4905e9294a8..e230c80761ec2dd312562570dc222c4c8d50dfc8 100755 (executable)
@@ -1042,9 +1042,10 @@ tasks = {
         ],
     },
 
-    "samba-shellcheck": {
+    "samba-codecheck": {
         "sequence": [
             ("run", "script/check-shell-scripts.sh ."),
+            ("run", "script/codespell.sh ."),
         ],
     },