Skip to content

Commit

Permalink
CI: Add missing $ to Sonar Cloud build steps
Browse files Browse the repository at this point in the history
Without the `$` GitHub Actions doesn't do the environment variable
replacement and CMake thinks we want a source directory of `./}}`
  • Loading branch information
ADKaster authored and linusg committed Sep 17, 2021
1 parent 0909628 commit 99b5267
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/sonar-cloud-static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,8 @@ jobs:
# binary directory for that project.
run: |
ninja -C Build/superbuild serenity-configure
cmake -B Build/{{ env.SONAR_ANALYSIS_ARCH }} -DCMAKE_EXPORT_COMPILE_COMMANDS=ON
ninja -C Build/{{ env.SONAR_ANALYSIS_ARCH }} all_generated
cmake -B Build/${{ env.SONAR_ANALYSIS_ARCH }} -DCMAKE_EXPORT_COMPILE_COMMANDS=ON
ninja -C Build/${{ env.SONAR_ANALYSIS_ARCH }} all_generated
- name: Run sonar-scanner, upload results
env:
Expand Down

0 comments on commit 99b5267

Please sign in to comment.