Apply sample rate to all profiler subsystem telemetry to bypass ingestion sampling #7282
Workflow file for this run
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: Build | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }} | |
| cancel-in-progress: true | |
| jobs: | |
| common: | |
| uses: ./.github/workflows/build-common.yml | |
| required-status-check: | |
| needs: | |
| - common | |
| runs-on: ubuntu-latest | |
| if: always() | |
| steps: | |
| - if: needs.common.result != 'success' | |
| run: exit 1 |