CI: Add missing $ to Sonar Cloud build steps

Without the `$` GitHub Actions doesn't do the environment variable
replacement and CMake thinks we want a source directory of `./}}`
This commit is contained in:
Andrew Kaster 2021-09-17 03:54:12 -06:00 committed by Linus Groh
parent 090962823b
commit 99b526731e
Notes: sideshowbarker 2024-07-18 03:47:09 +09:00

View file

@ -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: