Sonar #2322
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: | |
workflow_run: | |
workflows: [ "Java CI with Gradle" ] | |
types: | |
- completed | |
jobs: | |
build: | |
name: Sonar | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis | |
ref: ${{github.event.workflow_run.head_sha}} | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 17 | |
distribution: 'temurin' | |
cache: 'gradle' | |
- name: Download IntegrationTest report | |
uses: actions/download-artifact@v4 | |
with: | |
path: reports | |
pattern: kubernetes-integration-tests-reports | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
run-id: ${{github.event.workflow_run.id}} | |
- name: Download UnitTest report | |
uses: actions/download-artifact@v4 | |
with: | |
path: reports | |
pattern: ubuntu-latest-test-reports | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
run-id: ${{github.event.workflow_run.id}} | |
- name: Download PrInfo | |
uses: actions/download-artifact@v4 | |
with: | |
pattern: prInfo | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
run-id: ${{github.event.workflow_run.id}} | |
- name: Create coverage report and run Sonar analysis | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
run: | | |
mkdir build | |
cp -r reports/*-reports/* build/ | |
if [ '${{github.event.workflow_run.event}}' == 'pull_request' ]; then | |
PR_NUMBER=$(<prInfo/PR) | |
BASE_REF=$(<prInfo/base_ref) | |
HEAD_REF=$(<prInfo/head_ref) | |
./gradlew jacocoTestReport sonar -Dsonar.pullrequest.base=$BASE_REF -Dsonar.pullrequest.branch=$HEAD_REF -Dsonar.pullrequest.key=$PR_NUMBER -Dsonar.pullrequest.provider=GitHub -Dsonar.pullrequest.github.repository=${{github.repository}} | |
else | |
./gradlew jacocoTestReport sonar | |
fi | |
shell: bash |