Sonar #1133
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 reports | |
uses: actions/download-artifact@v4 | |
with: | |
path: reports | |
pattern: -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: Run Sonar analysis | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
run: | | |
if [ '${{github.event.workflow_run.event}}' == 'pull_request' ]; then | |
PR_NUMBER=$(<prInfo/PR) | |
BASE_REF=$(<prInfo/base_ref) | |
HEAD_REF=$(<prInfo/head_ref) | |
./gradlew build 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 build sonar | |
fi | |
shell: bash | |