Skip to content

Commit

Permalink
feat: use self-hosted runner
Browse files Browse the repository at this point in the history
  • Loading branch information
SyMind committed Dec 18, 2024
1 parent 87f1c66 commit 83ee966
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/codspeed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,14 @@ on:
workflow_dispatch:

jobs:
get-runner-labels:
name: Get Runner Labels
uses: ./.github/workflows/get-runner-labels.yml

benchmarks:
name: Run benchmarks
runs-on: ubuntu-latest
needs: [get-runner-labels]
runs-on: ${{ fromJSON(needs.get-runner-labels.outputs.LINUX_RUNNER_LABELS) }}
steps:
- uses: "actions/checkout@v4"
- uses: "actions/setup-node@v3"
Expand Down

0 comments on commit 83ee966

Please sign in to comment.