๐๐ธ Unit tests fix compile_commands.json #93
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
name: clang-tidy-push | |
on: [push, workflow_dispatch] | |
jobs: | |
static-analysis: | |
name: Static analysis | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Clang | |
env: | |
CLANG_VERSION: ${{ vars.CLANG_VERSION }} | |
run: | | |
wget https://apt.llvm.org/llvm.sh | |
chmod +x ./llvm.sh | |
sudo ./llvm.sh $CLANG_VERSION | |
sudo ln -f -s /usr/bin/clang-$CLANG_VERSION /usr/local/bin/cc | |
sudo ln -f -s /usr/bin/clang++-$CLANG_VERSION /usr/local/bin/c++ | |
sudo ln -f -s /usr/bin/clang-tidy-$CLANG_VERSION /usr/local/bin/clang-tidy | |
- name: Prepare compile_commands.json | |
run: | | |
cmake -B ${{github.workspace}}/build | |
ln -s ${{github.workspace}}/build/compile_commands.json ${{github.workspace}} | |
- name: Upload compile_commands.json | |
uses: actions/upload-artifact@v3 | |
with: | |
name: compile_commands.json | |
path: compile_commands.json | |
- name: Run analysis | |
run: | | |
find mays -name '*.cc' -o -name '*.h' | xargs -P0 -I {} clang-tidy {} |