diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2023-08-14 01:15:46 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2023-10-05 17:37:42 +0200 |
commit | 44adfc0b7d1badd0dd9ed83da3a94477e53203a3 (patch) | |
tree | 06b2ab4317b29de4667d9891519b3d703560e788 /.github | |
parent | dfd044930689aa6d2af94d15d1372923c5302ffb (diff) |
Sonarcloud integration
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/sonarcloud.yml | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/.github/workflows/sonarcloud.yml b/.github/workflows/sonarcloud.yml new file mode 100644 index 000000000..7ea9dbb63 --- /dev/null +++ b/.github/workflows/sonarcloud.yml @@ -0,0 +1,45 @@ +on: + push: + branches: + - main + - tmp + pull_request: + types: [opened, synchronize, reopened] + +name: Sonarcloud Scan +jobs: + sonarcloud: + runs-on: ubuntu-latest + env: + BUILD_WRAPPER_OUT_DIR: build_wrapper_output_directory + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 1 + - name: Install sonar-scanner and build-wrapper + uses: SonarSource/sonarcloud-github-c-cpp@v2 + - name: Install Prerequisites + run: | + sudo apt-get update + sudo apt-get install autoconf automake cmake libtool pkg-config gettext libjson-c-dev flex bison libpcap-dev zlib1g-dev + - name: Run build-wrapper + run: | + mkdir build + cmake -S . -B build -DBUILD_NDPI=ON -DDENABLE_ZLIB=ON -DNDPI_WITH_GCRYPT=OFF + build-wrapper-linux-x86-64 --out-dir ${{ env.BUILD_WRAPPER_OUT_DIR }} cmake --build build/ --config Release + - name: Run tests + run: | + ./test/run_tests.sh ./libnDPI ./build/nDPId-test + - name: Run sonar-scanner + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} + run: | + sonar-scanner \ + --define sonar.branch.name=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}} \ + --define sonar.cfamily.build-wrapper-output="${{ env.BUILD_WRAPPER_OUT_DIR }}" \ + --define sonar.organization=lnslbrty \ + --define sonar.projectKey=lnslbrty_nDPId \ + --define sonar.exclusions=dependencies/uthash/tests/** \ + --define sonar.verbose=true \ + --define sonar.python.version=3.8 |