diff --git a/.github/workflows/develop-bench.yml b/.github/workflows/develop-bench.yml index 103583bb2aa..2066d80257c 100644 --- a/.github/workflows/develop-bench.yml +++ b/.github/workflows/develop-bench.yml @@ -92,6 +92,8 @@ jobs: - name: Setup Polar Signals uses: polarsignals/gh-actions-ps-profiling@68ae857e375a826606352016e5b90f01a2a7ff7a # v0.8.1 + # Profiling is observability only, so a flaky agent download must not fail the benchmark. + continue-on-error: true with: polarsignals_cloud_token: ${{ secrets.POLAR_SIGNALS_API_KEY }} labels: "branch=${{ github.ref_name }};gh_run_id=${{ github.run_id }};commit_sha=${{ github.sha }};benchmark=${{ matrix.benchmark.id }}" diff --git a/.github/workflows/pr-bench-runner.yml b/.github/workflows/pr-bench-runner.yml index b1b5d8c8799..edaa33aea66 100644 --- a/.github/workflows/pr-bench-runner.yml +++ b/.github/workflows/pr-bench-runner.yml @@ -76,6 +76,8 @@ jobs: - name: Setup Polar Signals if: github.event.pull_request.head.repo.fork == false uses: polarsignals/gh-actions-ps-profiling@68ae857e375a826606352016e5b90f01a2a7ff7a # v0.8.1 + # Profiling is observability only, so a flaky agent download must not fail the benchmark. + continue-on-error: true with: polarsignals_cloud_token: ${{ secrets.POLAR_SIGNALS_API_KEY }} labels: "branch=${{ github.ref_name }};gh_run_id=${{ github.run_id }};commit_sha=${{ github.event.pull_request.head.sha }};benchmark=${{ inputs.benchmark_id }}" diff --git a/.github/workflows/sql-bench-matrix.yml b/.github/workflows/sql-bench-matrix.yml index 0db85313641..53f127568d1 100644 --- a/.github/workflows/sql-bench-matrix.yml +++ b/.github/workflows/sql-bench-matrix.yml @@ -178,6 +178,8 @@ jobs: - name: Setup Polar Signals if: inputs.mode != 'pr' || github.event.pull_request.head.repo.fork == false uses: polarsignals/gh-actions-ps-profiling@68ae857e375a826606352016e5b90f01a2a7ff7a # v0.8.1 + # Profiling is observability only, so a flaky agent download must not fail the benchmark. + continue-on-error: true with: polarsignals_cloud_token: ${{ secrets.POLAR_SIGNALS_API_KEY }} labels: "branch=${{ github.ref_name }};gh_run_id=${{ github.run_id }};commit_sha=${{ inputs.mode == 'pr' && github.event.pull_request.head.sha || github.sha }};benchmark=${{ matrix.id }}"