From bb6580212d45f9ab0a459a9335aec2ff20818a6e Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Tue, 30 Aug 2022 09:54:22 -0400 Subject: [PATCH] ci: Don't run uncrustify on debian The uncrustify is too old for the config we ship. --- .gitlab-ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1e5b2679..45cf0f36 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,9 +2,12 @@ stages: - build - shellcheck -.autotools-build: &autotools-build +.check-format: &check-format script: - scripts/check-format.sh + +.autotools-build: &autotools-build + script: - NOCONFIGURE=1 ./autogen.sh - mkdir _build && cd _build - ../configure --prefix /usr @@ -17,6 +20,7 @@ fedora-x86_64: image: 'registry.fedoraproject.org/fedora:37' before_script: - dnf install -y gcc libtool intltool gtk3-devel git libpng-devel gettext-devel libxslt docbook-style-xsl cairo-devel systemd-devel systemd-udev kernel-headers libdrm-devel pango-devel make ShellCheck uncrustify patchutils + <<: *check-format <<: *autotools-build only: - merge_requests -- 2.47.3