From: Ray Strode Date: Tue, 30 Aug 2022 13:54:22 +0000 (-0400) Subject: ci: Don't run uncrustify on debian X-Git-Tag: 23.51.283~80^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=bb6580212d45f9ab0a459a9335aec2ff20818a6e;p=thirdparty%2Fplymouth.git ci: Don't run uncrustify on debian The uncrustify is too old for the config we ship. --- 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