-
Notifications
You must be signed in to change notification settings - Fork 172
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci/github: add Clang static analysis
- Loading branch information
Showing
1 changed file
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: Clang Static Analysis | ||
on: | ||
push | ||
jobs: | ||
clang-analyzer: | ||
name: Clang Static Analysis | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: deps | ||
run: | | ||
sudo apt install libncurses5-dev libreadline-dev nettle-dev \ | ||
libgnutls28-dev libuv1-dev cython3 python3-dev python3-setuptools libcppunit-dev libjsoncpp-dev \ | ||
autotools-dev autoconf libfmt-dev libhttp-parser-dev libmsgpack-dev libargon2-0-dev libasio-dev \ | ||
llvm llvm-dev clang clang-tools && \ | ||
sudo apt remove gcc g++ | ||
- name: restinio | ||
run: | | ||
mkdir restinio && cd restinio \ | ||
&& wget https://github.com/aberaud/restinio/archive/e0a261dd8488246a3cb8bbb3ea781ea5139c3c94.tar.gz \ | ||
&& ls -l && tar -xzf e0a261dd8488246a3cb8bbb3ea781ea5139c3c94.tar.gz \ | ||
&& cd restinio-e0a261dd8488246a3cb8bbb3ea781ea5139c3c94/dev \ | ||
&& cmake -DCMAKE_INSTALL_PREFIX=/usr -DRESTINIO_TEST=OFF -DRESTINIO_SAMPLE=OFF \ | ||
-DRESTINIO_INSTALL_SAMPLES=OFF -DRESTINIO_BENCH=OFF -DRESTINIO_INSTALL_BENCHES=OFF \ | ||
-DRESTINIO_FIND_DEPS=ON -DRESTINIO_ALLOW_SOBJECTIZER=Off -DRESTINIO_USE_BOOST_ASIO=none . \ | ||
&& make -j8 && sudo make install \ | ||
&& cd ../../.. && rm -rf restinio | ||
- name: cmake | ||
run: | | ||
mkdir build && cd build && \ | ||
cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DOPENDHT_C=On -DOPENDHT_PEER_DISCOVERY=On -DOPENDHT_PYTHON=On -DOPENDHT_TOOLS=On -DOPENDHT_PROXY_SERVER=On -DOPENDHT_PROXY_CLIENT=On | ||
- name: scan-build | ||
run: cd build && scan-build --status-bugs make |