From 1a1cc01d9941caccf3fd7090fd3a3a54843806f0 Mon Sep 17 00:00:00 2001 From: "J. Peter Mugaas" Date: Fri, 17 May 2024 11:55:06 -0400 Subject: [PATCH] Update cmake-single-platform.yml Remove quotation marks. --- .github/workflows/cmake-single-platform.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/cmake-single-platform.yml b/.github/workflows/cmake-single-platform.yml index 9700ed9..ae093c0 100644 --- a/.github/workflows/cmake-single-platform.yml +++ b/.github/workflows/cmake-single-platform.yml @@ -24,12 +24,12 @@ jobs: run: choco install pvs-studio --package-parameters='/Standalone' shell: cmd - - name: Setup PVS-Studio License - run: "\Program Files (x86)\PVS-Studio\PVS-Studio_Cmd.exe" --userName ${{ - secrets.USER_NAME }} --licenseKey ${{ secrets.LICSESE_KEY }} + - Name: PVS-Setup License + run: \Program Files (x86)\PVS-Studio\PVS-Studio_Cmd.exe \ + --userName ${{ secrets.USER_NAME }} --licenseKey ${{ secrets.LICSESE_KEY }} - name: Configure CMake - run: cmake -B ${{github.workspace}}/build -DCMAKE_EXPORT_COMPILE_COMMANDS=On + run: cmake -B ${{github.workspace}}/build -DCMAKE_EXPORT_COMPILE_COMMANDS=On \ -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -G Ninja - name: Build @@ -43,15 +43,15 @@ jobs: run: ctest -C ${{env.BUILD_TYPE}} - name: Run Analysis - run: "\Program Files (x86)\PVS-Studio\CompilerCommandsAnalyzer.exe" analyze -f + run: \Program Files (x86)\PVS-Studio\CompilerCommandsAnalyzer.exe analyze -f build/compile_commands.json -j - name: Convert Report - run: "\Program Files (x86)\PVS-Studio\PlogConverter.exe" -a GA:1,2 -t Sarif -o - pvs-report.sarif PVS-Studio.log + run: \Program Files (x86)\PVS-Studio\PlogConverter.exe -a GA:1,2 -t Sarif \ + -o pvs-report.sarif PVS-Studio.log - name: Publish report uses: github/codeql-action/upload-sarif@v1 with: sarif_file: pvs-report.sarif - category: PVS-Studio \ No newline at end of file + category: PVS-Studio