From 30b7771aa9a4acd69ef57806efdb6c672369c566 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Tue, 20 Feb 2024 11:30:53 -0500 Subject: [PATCH] ci: make clang-format job warn on failure instead of killing the pipeline it's insane to fail a pipeline over formatting errors. Part-of: --- .gitlab-ci/test/gitlab-ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitlab-ci/test/gitlab-ci.yml b/.gitlab-ci/test/gitlab-ci.yml index 87d379b26bc..2aaed41f4a6 100644 --- a/.gitlab-ci/test/gitlab-ci.yml +++ b/.gitlab-ci/test/gitlab-ci.yml @@ -56,6 +56,7 @@ clang-format: - meson setup build - clang-format-${LLVM_VERSION} --version - ninja -C build clang-format + allow_failure: true .test-check: # Cancel job if a newer commit is pushed to the same branch