From 6f9fced6c67a059b98cf4bbcbcd1e00c74d87093 Mon Sep 17 00:00:00 2001 From: William Woodruff Date: Mon, 5 Jan 2026 13:52:29 -0500 Subject: [PATCH] Replace deprecated benchmarking mode (#17222) ## Summary Minor, noticed this with #17221. CodSpeed has deprecated `instrumentation` and replaced it with `simulation`, which has the same meaning: https://codspeed.io/docs/instruments/cpu/overview#legacy-terminology ## Test Plan No functional changes. --------- Signed-off-by: William Woodruff --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 71d9d6c41..681946a9b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2957,8 +2957,8 @@ jobs: mode: walltime token: ${{ secrets.CODSPEED_TOKEN }} - benchmarks-instrumented: - name: "benchmarks | instrumented" + benchmarks-simulated: + name: "benchmarks | simulated" runs-on: ubuntu-latest needs: determine_changes if: ${{ github.repository == 'astral-sh/uv' && !contains(github.event.pull_request.labels.*.name, 'no-test') && (needs.determine_changes.outputs.code == 'true' || github.ref == 'refs/heads/main') }} @@ -2994,5 +2994,5 @@ jobs: uses: CodSpeedHQ/action@346a2d8a8d9d38909abd0bc3d23f773110f076ad # v4.4.1 with: run: cargo codspeed run - mode: instrumentation + mode: simulation token: ${{ secrets.CODSPEED_TOKEN }}