This is an automated email from the ASF dual-hosted git repository.

pnoltes pushed a commit to branch feature/566-introduce-clang-tidy-setup
in repository https://gitbox.apache.org/repos/asf/celix.git


The following commit(s) were added to 
refs/heads/feature/566-introduce-clang-tidy-setup by this push:
     new b1382c495 gh-566: Remove unused clang warn as error build option
b1382c495 is described below

commit b1382c49570f1cbae88cff4cb8a46cf3ab8bc676
Author: Pepijn Noltes <[email protected]>
AuthorDate: Tue Feb 10 20:55:51 2026 +0100

    gh-566: Remove unused clang warn as error build option
---
 .github/workflows/ubuntu.yml | 1 -
 conanfile.py                 | 2 --
 2 files changed, 3 deletions(-)

diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml
index 6eb39059b..ed4f6c41c 100644
--- a/.github/workflows/ubuntu.yml
+++ b/.github/workflows/ubuntu.yml
@@ -106,7 +106,6 @@ jobs:
         sudo apt-get install -yq --no-install-recommends \
           build-essential \
           ninja-build \
-          clang-tidy \
           curl \
           uuid-dev \
           libzip-dev \
diff --git a/conanfile.py b/conanfile.py
index 099a77c2e..d8b87c6e5 100644
--- a/conanfile.py
+++ b/conanfile.py
@@ -48,7 +48,6 @@ class CelixConan(ConanFile):
         "enable_undefined_sanitizer": False,
         "enable_thread_sanitizer": False,
         "enable_clang_tidy": False,
-        "clang_tidy_warnings_as_errors": True,
         "enable_fuzzing": False,
         "enable_benchmarking": False,
         "install_find_modules": False,
@@ -160,7 +159,6 @@ class CelixConan(ConanFile):
         del self.info.options.enable_code_coverage
         del self.info.options.enable_gcc_analyzer
         del self.info.options.enable_clang_tidy
-        del self.info.options.clang_tidy_warnings_as_errors
 
     def build_requirements(self):
         if self.options.enable_testing:

Reply via email to