diff --git a/.github/workflows/base_benchmarks.yml b/.github/workflows/base_benchmarks.yml index 0257b084..8047d878 100644 --- a/.github/workflows/base_benchmarks.yml +++ b/.github/workflows/base_benchmarks.yml @@ -2,7 +2,7 @@ name: Benchmark (main) on: push: - branches: main + branches: [main] jobs: benchmark_base_branch: @@ -19,7 +19,7 @@ jobs: --project pmcore \ --token '${{ secrets.BENCHER_API_TOKEN }}' \ --branch main \ - --testbed orion \ + --testbed ${{ runner.name }} \ --threshold-measure latency \ --threshold-test t_test \ --threshold-max-sample-size 64 \ diff --git a/.github/workflows/pr_benchmarks.yml b/.github/workflows/pr_benchmarks.yml index 1b001f8c..f861b9a6 100644 --- a/.github/workflows/pr_benchmarks.yml +++ b/.github/workflows/pr_benchmarks.yml @@ -25,7 +25,7 @@ jobs: --start-point-hash '${{ github.event.pull_request.base.sha }}' \ --start-point-clone-thresholds \ --start-point-reset \ - --testbed orion \ + --testbed ${{ runner.name }} \ --err \ --adapter rust_criterion \ --github-actions '${{ secrets.GITHUB_TOKEN }}' \