Skip to content

Commit

Permalink
ci: remove --target=plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
piotrmacha committed Jun 17, 2024
1 parent 2ba320e commit 713a63f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:
- name: CMake Build
if: ${{ inputs.enable-sonar == false }}
run: |
cmake --build out/build/${{ inputs.cmake-preset }} --target plugin -j 16
cmake --build out/build/${{ inputs.cmake-preset }} -j 16
- name: Install Sonar
if: ${{ inputs.enable-sonar == true }}
run: |
Expand All @@ -113,7 +113,7 @@ jobs:
- name: CMake Build (Sonar Wrapper)
if: ${{ inputs.enable-sonar == true }}
run: |
./build-wrapper-win-x86/build-wrapper-win-x86-64.exe --out-dir ${{ env.BUILD_WRAPPER_OUT_DIR }} cmake --build out/build/${{ inputs.cmake-preset }} --target plugin -j 16
./build-wrapper-win-x86/build-wrapper-win-x86-64.exe --out-dir ${{ env.BUILD_WRAPPER_OUT_DIR }} cmake --build out/build/${{ inputs.cmake-preset }} -j 16
- name: Sonar Scanner
if: ${{ inputs.enable-sonar == true }}
env:
Expand Down

0 comments on commit 713a63f

Please sign in to comment.