mirror of
https://github.com/open-telemetry/opentelemetry-go.git
synced 2024-12-12 10:04:29 +02:00
1850b2c010
Bumps [benchmark-action/github-action-benchmark](https://github.com/benchmark-action/github-action-benchmark) from 1.14.0 to 1.15.0. - [Release notes](https://github.com/benchmark-action/github-action-benchmark/releases) - [Changelog](https://github.com/benchmark-action/github-action-benchmark/blob/master/CHANGELOG.md) - [Commits](https://github.com/benchmark-action/github-action-benchmark/compare/v1.14.0...v1.15.0) --- updated-dependencies: - dependency-name: benchmark-action/github-action-benchmark dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
34 lines
889 B
YAML
34 lines
889 B
YAML
name: Benchmark
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
env:
|
|
DEFAULT_GO_VERSION: 1.18
|
|
jobs:
|
|
benchmark:
|
|
name: Benchmarks
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-go@v3
|
|
with:
|
|
go-version: ${{ env.DEFAULT_GO_VERSION }}
|
|
- name: Run benchmarks
|
|
run: make test-bench | tee output.txt
|
|
- name: Download previous benchmark data
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: ./benchmarks
|
|
key: ${{ runner.os }}-benchmark
|
|
- name: Store benchmarks result
|
|
uses: benchmark-action/github-action-benchmark@v1.15.0
|
|
with:
|
|
name: Benchmarks
|
|
tool: 'go'
|
|
output-file-path: output.txt
|
|
external-data-json-path: ./benchmarks/data.json
|
|
auto-push: false
|
|
fail-on-alert: false
|
|
alert-threshold: "400%"
|