Skip to content

Try fix sonar workflow #23

Try fix sonar workflow

Try fix sonar workflow #23

name: Coverage and Sonar Analysis
on:
push:
branches:
- master
tags:
- '[0-9]+.[0-9]+.[0-9]+'
paths-ignore:
- '**.md'
jobs:
sonarcloud:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: maven
- name: Cache Maven packages
uses: actions/cache@v4
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Build, Test, and Analyze
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONARCLOUD_TOKEN }}
run: |
mvn --batch-mode --no-transfer-progress clean verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar \
-P coverage,sonar \
-Dsonar.projectKey=descoped_data-collector-core \
-Dsonar.organization=descoped \
-Dsonar.host.url=https://sonarcloud.io \
-Dsonar.coverage.jacoco.xmlReportPaths=target/site/jacoco/jacoco.xml \
-X -Djacoco.verbose=true
echo "Maven build completed. Checking for Jacoco report:"
ls -l target/site/jacoco/ || echo "Jacoco directory not found"
find . -name "jacoco.xml" || echo "No jacoco.xml found"
- name: Find Jacoco files
run: find . -name "*jacoco*.xml"
- name: Run tests
run: mvn test -P coverage
- name: Show test results
if: always()
run: cat target/surefire-reports/*.txt
- name: Build with Maven
run: mvn clean verify -P coverage -Djacoco.verbose=true