GitHub Action - Stuck "Waiting for report processing to complete..."

  • SonarQube Version - * Version 9.0.1 (build 46107)
  • Our scan is setup via github action, I followed all the directions and setup the proper github secrets
  • See my github action configuration below
  sonarqube:
    name: SonarQube Scan
    runs-on: ubuntu-latest

    steps:
      - name: Checkout source code
        uses: actions/checkout@v2
        with:
          fetch-depth: 0

      - name: SonarQube Scan
        uses: sonarsource/sonarqube-scan-action@master
        env:
          SONAR_TOKEN: ${{ secrets.SONARQUBE_TOKEN }}
          SONAR_HOST_URL: ${{ secrets.SONARQUBE_HOST_URL }}

Had to chase this down quite a bit, the problem was the buildbreaker plugin. This github issue explains how. The configuration needs to be set as sonar.buildbreaker.skip=true

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.