From c86092a077ee184fbdc1f35fa5f8aa44faddd34c Mon Sep 17 00:00:00 2001 From: meenbeese Date: Sun, 27 Aug 2023 17:12:06 -0400 Subject: [PATCH] [workflows] Integrate SonarCloud to the repo Signed-off-by: Meenbeese --- .github/workflows/sonar-analyze.yml | 73 +++++++++++++++++++++++++++++ sonar-project.properties | 5 ++ 2 files changed, 78 insertions(+) create mode 100644 .github/workflows/sonar-analyze.yml create mode 100644 sonar-project.properties diff --git a/.github/workflows/sonar-analyze.yml b/.github/workflows/sonar-analyze.yml new file mode 100644 index 0000000000..2c7fa4a5c5 --- /dev/null +++ b/.github/workflows/sonar-analyze.yml @@ -0,0 +1,73 @@ +name: SonarCloud +on: + push: + branches: + - master + pull_request: + types: [opened, synchronize, reopened] +jobs: + build: + name: Build and analyze + runs-on: ubuntu-24.04 + env: + BUILD_WRAPPER_OUT_DIR: build_wrapper_output_directory # Directory where build-wrapper output will be placed + steps: + - name: Free disk space by removing .NET, Android and Haskell + shell: bash + run: | + sudo rm -rf /usr/share/dotnet /usr/local/lib/android /opt/ghc + - name: Checkout sources + uses: actions/checkout@v4 + with: + fetch-depth: 100 # enough to get all commits for the current day + + - name: Parallel submodules checkout + shell: bash + run: git submodule update --depth 1 --init --recursive --jobs=$(($(nproc) * 20)) + + - name: Install sonar-scanner and build-wrapper + uses: SonarSource/sonarcloud-github-c-cpp@v3 + + - name: Install build tools and dependencies + shell: bash + run: | + sudo apt update -y + sudo apt install -y \ + ninja-build \ + qt6-base-dev \ + qt6-positioning-dev \ + libgl1-mesa-dev \ + libglvnd-dev \ + libqt6svg6-dev \ + libfreetype6-dev \ + libharfbuzz-dev \ + libqt6positioning6-plugins \ + libqt6positioning6 + - name: Configure + shell: bash + run: ./configure.sh + + - name: Configure ccache + uses: hendrikmuhs/ccache-action@v1.2 + with: + key: ${{ github.workflow }} + + - name: CMake + shell: bash + env: + CC: clang-18 + CXX: clang++-18 + CMAKE_C_COMPILER_LAUNCHER: ccache + CMAKE_CXX_COMPILER_LAUNCHER: ccache + # -g1 should slightly reduce build time. + run: | + cmake . -B build -G Ninja -DCMAKE_BUILD_TYPE=Debug -DCMAKE_C_FLAGS=-g1 -DCMAKE_CXX_FLAGS=-g1 + - name: Run build-wrapper + run: | + build-wrapper-linux-x86-64 --out-dir ${{ env.BUILD_WRAPPER_OUT_DIR }} ninja -C build/ + - name: Run sonar-scanner + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} + run: | + sonar-scanner -X --define sonar.cfamily.build-wrapper-output="${{ env.BUILD_WRAPPER_OUT_DIR }}/compile_commands.json" \ No newline at end of file diff --git a/sonar-project.properties b/sonar-project.properties new file mode 100644 index 0000000000..d89d987380 --- /dev/null +++ b/sonar-project.properties @@ -0,0 +1,5 @@ +sonar.organization=organicmaps +sonar.projectKey=organicmaps + +sonar.sources=base/,coding/,cppjansson/,descriptions/,drape/,drape_frontend/,editor/,feature_list/,ge0/,generator/,geometry/,indexer/,kml/,map/,mapshot/,openlr/,platform/,poly_borders/,qt/,qt_tstfrm/,routing/,routing_common/,search/,shaders/,skin_generator/,software_renderer/,std/,storage/,topography_generator/,track_analyzing/,track_generator/,tracking/,traffic/,transit/ +sonar.exclusions=3party/**,android/**,cmake/**,data/**,docs/**,iphone/**,packaging/**,pyhelpers/**,testing/**,xcode/** \ No newline at end of file -- 2.45.3