We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d0df70 commit 627de89Copy full SHA for 627de89
.github/workflows/continuous-benchmarks.yml
@@ -14,7 +14,7 @@ permissions:
14
15
jobs:
16
ci-benchmarks:
17
- runs-on: ubuntu-latest
+ runs-on: self-hosted
18
steps:
19
- name: Checkout repository
20
uses: actions/checkout@v5
@@ -29,7 +29,7 @@ jobs:
29
shell: bash
30
run: |
31
COUNT=$([[ "${{ github.event_name }}" == "pull_request" ]] && echo 1 || echo 5)
32
- LOG_LEVEL=FATAL go test -run='$^' -count=$COUNT -bench=. -benchmem ./... | tee ${{ runner.temp }}/gotool.txt
+ LOG_LEVEL=FATAL GOMAXPROCS=4 go test -run='$^' -count=$COUNT -bench=. -benchmem ./... | tee ${{ runner.temp }}/gotool.txt
33
34
# Add GitHub job summary for pull requests.
35
- name: Summarize benchmarks results
0 commit comments