Skip to content

Commit a9e5118

Browse files
committed
chore: remove clang-tidy dependency and configuration from CI workflows and CMakeLists.txt
1 parent 7b19458 commit a9e5118

2 files changed

Lines changed: 5 additions & 14 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
if: matrix.os == 'ubuntu-latest'
3838
run: |
3939
sudo apt-get update
40-
sudo apt-get install -y libcurl4-openssl-dev clang-tidy
40+
sudo apt-get install -y libcurl4-openssl-dev
4141
4242
- name: Install Dependencies (Windows)
4343
if: matrix.os == 'windows-latest'
@@ -74,7 +74,7 @@ jobs:
7474
- os: ubuntu-latest
7575
install-deps: |
7676
sudo apt-get update
77-
sudo apt-get install -y libcurl4-openssl-dev clang-tidy
77+
sudo apt-get install -y libcurl4-openssl-dev
7878
- os: macos-latest
7979
install-deps: |
8080
brew install curl
@@ -163,7 +163,7 @@ jobs:
163163
- name: Install Dependencies
164164
run: |
165165
sudo apt-get update
166-
sudo apt-get install -y libcurl4-openssl-dev clang-tidy
166+
sudo apt-get install -y libcurl4-openssl-dev
167167
168168
- name: Configure CMake
169169
run: cmake -B build -S . -DCMAKE_BUILD_TYPE=Debug -DARKILIAN_BUILD_EXAMPLES=ON
@@ -187,7 +187,7 @@ jobs:
187187
- name: Install Dependencies
188188
run: |
189189
sudo apt-get update
190-
sudo apt-get install -y libcurl4-openssl-dev clang-tidy
190+
sudo apt-get install -y libcurl4-openssl-dev
191191
192192
- name: Configure (ASAN + UBSAN, tests ON)
193193
run: |
@@ -218,7 +218,7 @@ jobs:
218218
- name: Install Dependencies
219219
run: |
220220
sudo apt-get update
221-
sudo apt-get install -y libcurl4-openssl-dev clang-tidy
221+
sudo apt-get install -y libcurl4-openssl-dev
222222
223223
- name: Configure (TSAN, tests ON)
224224
run: |

CMakeLists.txt

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,6 @@ option(ARKILIAN_BUILD_STATIC "Build static library for embedded use" ON)
2020
option(ARKILIAN_BUILD_EXAMPLES "Build example programs" ON)
2121
option(ARKILIAN_BUILD_TESTS "Build test programs" OFF)
2222

23-
# Find clang-tidy for static code analysis
24-
find_program(CLANG_TIDY_EXE NAMES clang-tidy)
25-
if(CLANG_TIDY_EXE)
26-
message(STATUS "Found clang-tidy: ${CLANG_TIDY_EXE}")
27-
set(CMAKE_C_CLANG_TIDY "${CLANG_TIDY_EXE}")
28-
else()
29-
message(WARNING "clang-tidy not found. Static code analysis will be skipped.")
30-
endif()
31-
3223
# Find CURL
3324
find_package(CURL REQUIRED)
3425

0 commit comments

Comments
 (0)