File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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'
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 : |
Original file line number Diff line number Diff line change @@ -20,15 +20,6 @@ option(ARKILIAN_BUILD_STATIC "Build static library for embedded use" ON)
2020option (ARKILIAN_BUILD_EXAMPLES "Build example programs" ON )
2121option (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
3324find_package (CURL REQUIRED )
3425
You can’t perform that action at this time.
0 commit comments