From 99b526731efdae2cd6c0dc9ed7e4edefebd7fc26 Mon Sep 17 00:00:00 2001 From: Andrew Kaster Date: Fri, 17 Sep 2021 03:54:12 -0600 Subject: [PATCH] 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 `./}}` --- .github/workflows/sonar-cloud-static-analysis.yml | 4 ++-- 1 file 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: