From 6f37f480162f9b7913e5bccb07bc082c4da6836c Mon Sep 17 00:00:00 2001 From: Paul Dechamps <paul.dechamps@uliege.be> Date: Tue, 29 Oct 2024 15:11:55 +0100 Subject: [PATCH] (fix) Fix clang version line --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c86aebd..e6e2fbc 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -24,7 +24,7 @@ format: <<: *global_tag_def stage: build script: - - clang-format --version # we use clang-format-10 exclusively + - clang-format-11 --version # we use clang-format-11 exclusively - ./format/format.py - mkdir -p patches - if git diff --patch --exit-code > patches/clang-format.patch; then echo "Clang format changed nothing"; else echo "Clang format found changes to make!"; false; fi -- GitLab