diff options
author | Andrew Kaster <akaster@serenityos.org> | 2021-09-17 03:54:12 -0600 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-09-17 11:03:27 +0100 |
commit | 99b526731efdae2cd6c0dc9ed7e4edefebd7fc26 (patch) | |
tree | b39366c180eb537a119438b538cd25d39c1e5a7e /.github/workflows/sonar-cloud-static-analysis.yml | |
parent | 090962823b923fb5fc93a2b46028cece8217d2d2 (diff) | |
download | serenity-99b526731efdae2cd6c0dc9ed7e4edefebd7fc26.zip |
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 `./}}`
Diffstat (limited to '.github/workflows/sonar-cloud-static-analysis.yml')
-rw-r--r-- | .github/workflows/sonar-cloud-static-analysis.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/sonar-cloud-static-analysis.yml b/.github/workflows/sonar-cloud-static-analysis.yml index 9135dcb6c2..883a23c798 100644 --- a/.github/workflows/sonar-cloud-static-analysis.yml +++ b/.github/workflows/sonar-cloud-static-analysis.yml @@ -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: |