commitment: fix warmuper arena data race in HashSort (#21432) #4
This file contains hidden or 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: SonarCloud Branch Scan | |
| # SonarCloud rejects a branch analysis dated older than the branch's latest | |
| # processed one, so analyses must reach it in chronological order. This | |
| # workflow is the only submitter of branch analyses: it scans after each push, | |
| # serialized per branch by a FIFO concurrency queue, reusing the coverage | |
| # profile uploaded by the commit's merge-queue run. | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - 'release/**' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| queue: max | |
| permissions: | |
| actions: read | |
| contents: read | |
| jobs: | |
| sonar: | |
| uses: ./.github/workflows/sonar.yml | |
| with: | |
| scan-only: true | |
| secrets: inherit |