Merge pull request #1603 from janbar/fix_touch_event_qt6 #45
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Sonar | |
on: | |
pull_request: | |
branches: | |
- master | |
push: | |
branches: | |
- master | |
paths-ignore: | |
- '.github/workflows/**' | |
workflow_dispatch: | |
jobs: | |
sonar_gcc_meson: | |
name: sonar, gcc and meson | |
runs-on: ubuntu-22.04 | |
environment: SONAR | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Update package list | |
run: sudo apt-get update | |
- name: Install software-properties-common | |
run: sudo apt-get install software-properties-common | |
- name: Install gcc compiler, meson and ninja | |
run: sudo apt-get -y install gcc-11 g++-11 libtbb-dev ccache libtool pkg-config | |
- name: Install meson, ninja, lcov and gcovr via pip | |
run: pip install meson ninja lcov gcovr==6.0 | |
- name: Install libosmscout dependencies | |
run: "sudo apt-get install -y | |
libxml2-dev | |
libprotobuf-dev protobuf-compiler | |
libagg-dev | |
libfreetype6-dev libcairo2-dev libpangocairo-1.0-0 libpango1.0-dev | |
qtdeclarative5-dev libqt5svg5-dev qtlocation5-dev qtpositioning5-dev qttools5-dev-tools | |
qttools5-dev qtmultimedia5-dev | |
libglm-dev libglew-dev freeglut3 freeglut3-dev | |
libmarisa-dev" | |
- name: Install sonar-scanner and build-wrapper | |
uses: sonarsource/sonarcloud-github-c-cpp@v2 | |
- name: Configure build project | |
run: meson setup --buildtype debugoptimized -Db_coverage=true --unity on debug | |
env: | |
CXX: g++-11 | |
CC: gcc-11 | |
- name: Build project | |
run: build-wrapper-linux-x86-64 --out-dir sonar-build-output ninja -C debug all test coverage | |
- name: Create gcov files | |
run: mkdir gcov && cd gcov && gcov -p ../debug//*/*/* | |
- name: SonarCloud Scan | |
run: sonar-scanner -Dsonar.cfamily.build-wrapper-output=sonar-build-output -Dsonar.cfamily.gcov.reportsPath=gcov -Dsonar.token=$SONAR_TOKEN | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} |