From fc56349331d46fd0bca761fe55ee0bab9ffa5581 Mon Sep 17 00:00:00 2001 From: Ben Carter <110695027+ben-of-codecraft@users.noreply.github.com> Date: Sat, 2 Nov 2024 02:21:38 -0400 Subject: [PATCH] removed cpp check --- .github/actions/build-tag-release/action.yml | 32 ++++++++++---------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/actions/build-tag-release/action.yml b/.github/actions/build-tag-release/action.yml index c17b2be..69196a8 100644 --- a/.github/actions/build-tag-release/action.yml +++ b/.github/actions/build-tag-release/action.yml @@ -107,23 +107,23 @@ runs: restore-keys: | ${{ runner.os }}-cppcheck- - - name: cpp check - if: ${{ inputs.tag_release == 'true' }} - shell: bash - run: | - cppcheck --force --inline-suppr --std=c++20 --output-file=report.txt \ - --suppress=*:*lualib/* \ - --suppress=*:*LuaEngine/libs/* \ - -j $(nproc) --enable=warning \ - --cppcheck-build-dir=/home/runner/work/${{ github.repository }}/_cppcheck_cache \ - /azerothcore/modules/${{ env.REPO_NAME }} + # - name: cpp check + # if: ${{ inputs.tag_release == 'true' }} + # shell: bash + # run: | + # cppcheck --force --inline-suppr --std=c++20 --output-file=report.txt \ + # --suppress=*:*lualib/* \ + # --suppress=*:*LuaEngine/libs/* \ + # -j $(nproc) --enable=warning \ + # --cppcheck-build-dir=/home/runner/work/${{ github.repository }}/_cppcheck_cache \ + # /azerothcore/modules/${{ env.REPO_NAME }} - if [ -s report.txt ]; then - echo "Cppcheck found issues:" - cat report.txt - else - echo "No issues found by cppcheck." - fi + # if [ -s report.txt ]; then + # echo "Cppcheck found issues:" + # cat report.txt + # else + # echo "No issues found by cppcheck." + # fi - name: tag release if: ${{ inputs.tag_release == 'true' }} && ${{ inputs.event_name == 'push' }}