From 76c8620cd853e4137fedd3059eadc7afc34e11d4 Mon Sep 17 00:00:00 2001 From: Patric Stout Date: Sun, 23 Oct 2022 09:59:49 +0000 Subject: [PATCH] fix(sonarcloud): install conan and dependencies --- .github/workflows/sonarcloud.yaml | 5 +++++ 1 file changed, 5 insertions(+), 0 deletions(-) diff --git a/.github/workflows/sonarcloud.yaml b/.github/workflows/sonarcloud.yaml index b029718..3ecb704 100644 --- a/.github/workflows/sonarcloud.yaml +++ b/.github/workflows/sonarcloud.yaml @@ -59,10 +59,15 @@ jobs: echo "$(pwd)/.sonar/sonar-scanner-${{ env.SONAR_SCANNER_VERSION }}-linux/bin" >> $GITHUB_PATH echo "$(pwd)/.sonar/build-wrapper-linux-x86" >> $GITHUB_PATH + - name: Install conan + run: | + pip install conan + - name: Compile run: | mkdir build cd build + conan install .. build-wrapper-linux-x86-64 --out-dir ../.build-wrapper-out cmake .. -DMIN_LOGGER_LEVEL=TRACE build-wrapper-linux-x86-64 --out-dir ../.build-wrapper-out make -j$(nproc) -- libgit2 0.21.4