mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
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:
parent
090962823b
commit
99b526731e
Notes:
sideshowbarker
2024-07-18 03:47:09 +09:00
Author: https://github.com/ADKaster Commit: https://github.com/SerenityOS/serenity/commit/99b526731ef Pull-request: https://github.com/SerenityOS/serenity/pull/10089
1 changed files with 2 additions and 2 deletions
|
@ -119,8 +119,8 @@ jobs:
|
||||||
# binary directory for that project.
|
# binary directory for that project.
|
||||||
run: |
|
run: |
|
||||||
ninja -C Build/superbuild serenity-configure
|
ninja -C Build/superbuild serenity-configure
|
||||||
cmake -B Build/{{ env.SONAR_ANALYSIS_ARCH }} -DCMAKE_EXPORT_COMPILE_COMMANDS=ON
|
cmake -B Build/${{ env.SONAR_ANALYSIS_ARCH }} -DCMAKE_EXPORT_COMPILE_COMMANDS=ON
|
||||||
ninja -C Build/{{ env.SONAR_ANALYSIS_ARCH }} all_generated
|
ninja -C Build/${{ env.SONAR_ANALYSIS_ARCH }} all_generated
|
||||||
|
|
||||||
- name: Run sonar-scanner, upload results
|
- name: Run sonar-scanner, upload results
|
||||||
env:
|
env:
|
||||||
|
|
Loading…
Reference in a new issue