-
Notifications
You must be signed in to change notification settings - Fork 556
42 lines (38 loc) · 1.15 KB
/
benchmarks.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: Benchmarks
on:
push:
branches: [ main, release/* ]
paths-ignore:
- 'docs/**'
- '**.md'
pull_request:
# The branches below must be a subset of the branches above
branches: [ main ]
paths-ignore:
- 'docs/**'
- '**.md'
permissions:
contents: write
deployments: write
jobs:
benchmark:
name: Run
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v4
- name: Build benchmarks
run: cd test/DocumentFormat.OpenXml.Benchmarks; dotnet build -c RELEASE
shell: pwsh
- name: Run benchmarks
run: cd test/DocumentFormat.OpenXml.Benchmarks; dotnet run -c RELEASE -f net8.0
shell: pwsh
- name: Write summary
shell: pwsh
run: |
$files = gci test/DocumentFormat.OpenXml.Benchmarks/BenchmarkDotNet.Artifacts/results/*-report-github.md
foreach ($file in $files){
$name = $file.Name.Replace("-report-github.md", "").Replace("DocumentFormat.OpenXml.Benchmarks.", "")
"## $name" >> $env:GITHUB_STEP_SUMMARY
gc $file >> $env:GITHUB_STEP_SUMMARY
}