]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
Extract CHANGES checks to a separate GitLab CI job
authorMichał Kępień <michal@isc.org>
Fri, 29 Mar 2024 07:27:49 +0000 (08:27 +0100)
committerMichał Kępień <michal@isc.org>
Fri, 29 Mar 2024 07:33:30 +0000 (08:33 +0100)
Checking the contents of the CHANGES file currently requires invoking
multiple shell scripts.  These invocations are conflated with those for
other test scripts in the "misc" GitLab CI job.  Extract the commands
checking the contents of the CHANGES file to a separate GitLab CI job,
"changes", to improve readability.  Remove similar checks for the
CHANGES.SE file altogether as they are only relevant for BIND -S and
therefore should not be present in an open source branch.

(cherry picked from commit 1335e139f28e1f0b448fd6f8d134228eb12efa98)

.gitlab-ci.yml

index 79a69c987b6645e1da56131f451d18c19cb7ebbc..c2a2199339fdf7ca5089973e25c58a5d2e83240b 100644 (file)
@@ -517,15 +517,6 @@ misc:
   <<: *precheck_job
   script:
     - sh util/checklibs.sh > checklibs.out
-    - sh util/tabify-changes < CHANGES > CHANGES.tmp
-    - diff -urNap CHANGES CHANGES.tmp
-    - perl util/check-changes CHANGES
-    - sh util/check-line-length.sh CHANGES
-    - test ! -f CHANGES.SE || sh util/tabify-changes < CHANGES.SE > CHANGES.tmp
-    - test ! -f CHANGES.SE || diff -urNap CHANGES.SE CHANGES.tmp
-    - test ! -f CHANGES.SE || perl util/check-changes master=0 CHANGES.SE
-    - test ! -f CHANGES.SE || sh util/check-line-length.sh CHANGES.SE
-    - rm CHANGES.tmp
     - sh util/check-categories.sh
     - sh util/check-gitignore.sh
     - sh util/check-trailing-whitespace.sh
@@ -538,6 +529,16 @@ misc:
       - checklibs.out
     when: on_failure
 
+changes:
+  <<: *precheck_job
+  script:
+    - sh util/tabify-changes < CHANGES > CHANGES.tmp
+    - diff -urNap CHANGES CHANGES.tmp
+    - perl util/check-changes CHANGES
+    - sh util/check-line-length.sh CHANGES
+    - rm CHANGES.tmp
+  needs: []
+
 black:
   <<: *precheck_job
   needs: []