Commit 76c8620cd853e4137fedd3059eadc7afc34e11d4
1 parent
5c834f64
fix(sonarcloud): install conan and dependencies
Showing
1 changed file
with
5 additions
and
0 deletions
.github/workflows/sonarcloud.yaml
| ... | ... | @@ -59,10 +59,15 @@ jobs: |
| 59 | 59 | echo "$(pwd)/.sonar/sonar-scanner-${{ env.SONAR_SCANNER_VERSION }}-linux/bin" >> $GITHUB_PATH |
| 60 | 60 | echo "$(pwd)/.sonar/build-wrapper-linux-x86" >> $GITHUB_PATH |
| 61 | 61 | |
| 62 | + - name: Install conan | |
| 63 | + run: | | |
| 64 | + pip install conan | |
| 65 | + | |
| 62 | 66 | - name: Compile |
| 63 | 67 | run: | |
| 64 | 68 | mkdir build |
| 65 | 69 | cd build |
| 70 | + conan install .. | |
| 66 | 71 | build-wrapper-linux-x86-64 --out-dir ../.build-wrapper-out cmake .. -DMIN_LOGGER_LEVEL=TRACE |
| 67 | 72 | build-wrapper-linux-x86-64 --out-dir ../.build-wrapper-out make -j$(nproc) |
| 68 | 73 | ... | ... |