]> granicus.if.org Git - graphviz/commitdiff
fix: don't run pylint CI job on tags
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 21 Mar 2021 15:58:29 +0000 (08:58 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 28 Mar 2021 23:22:34 +0000 (16:22 -0700)
383ec8753b8007d26fc4f6eb51c61b6d8b71d12e added a pylint task in CI. This task is
unrestricted, so Gitlab thinks it is meant to run on tags as well as on master.
Every other task is restricted to only run on master (including the dependencies
of the pylint job) so CI now fails on tags. This change limits the lint job to
not run on tags. Fixes #1978.

.gitlab-ci.yml

index 879a82a75a27b93ece2b0f1216156f9f38967092..d52394c7b05f03255618b58f4af608e77ef55bda 100644 (file)
@@ -823,3 +823,5 @@ lint_pylint:
     expire_in: 1 week
     reports:
         metrics: metrics.txt
+  except:
+    - tags