-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbenchmark.yml
49 lines (40 loc) · 1.09 KB
/
benchmark.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
43
44
45
46
47
48
49
name: Benchmark
on:
push:
branches: [ "main" ]
paths:
- 'JsonBenchmark/**'
workflow_dispatch:
jobs:
benchmark:
name: Run Benchmark
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Build
run: dotnet build -c Release
- name: Run benchmark
run: |
mkdir -p results
cd JsonBenchmark
dotnet run -c Release --no-build
- name: Move benchmark results
run: |
mkdir -p results
mv BenchmarkDotNet.Artifacts/results/* results/
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: benchmark-results
path: results/
- name: Commit benchmark results
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add results/
git commit -m "Update benchmark results" || echo "No changes to commit"
git push || echo "No changes to push"