Просмотр исходного кода

[action] fix cppcheck build dir (#9406)

Supper Thomas 11 месяцев назад
Родитель
Сommit
3943a3e163
1 измененных файлов с 8 добавлено и 11 удалено
  1. 8 11
      .github/workflows/static_code_analysis.yml

+ 8 - 11
.github/workflows/static_code_analysis.yml

@@ -36,21 +36,18 @@ jobs:
         run: |
           sudo apt-get update
           pip install click PyYaml
+          git remote -v
+          git fetch origin
+          ls
+          git branch -a
           git clone https://github.com/danmar/cppcheck.git
           cd cppcheck
           git fetch --tags
           latest_tag=$(git describe --tags `git rev-list --tags --max-count=1`)
           echo "Latest release tag: $latest_tag"
           git checkout $latest_tag
-          mkdir build
-          cd build
-          cmake ..
-          make
-          sudo make install FILESDIR=/usr/local/share/Cppcheck CFGDIR=/usr/share/Cppcheck/cfg
+          make FILESDIR=/usr/local/share/Cppcheck -j2
+          sudo make install FILESDIR=/usr/local/share/Cppcheck 
           cppcheck --version
-          cd ../../
-          git remote -v
-          git fetch origin
-          ls
-          git branch -a
-          python tools/ci/cpp_check.py check
+          cd ..
+          python tools/ci/cpp_check.py check