Skip to content
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,13 @@ jobs:
dotnet run -c Release
working-directory: ./performance/benchmark

- name: Publish benchmark results
uses: actions/upload-artifact@v4
with:
if-no-files-found: error
name: benchmark-results
path: "${{ github.workspace }}/performance/benchmark/BenchmarkDotNet.Artifacts/results"

- name: Run comparison tool for empty models
run: dotnet run -c Release --project ./performance/resultsComparer/resultsComparer.csproj -- compare $OLD_REPORT $NEW_REPORT -p IdenticalMemoryUsage
shell: bash
Expand Down
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ ipch/
*.VC.VC.opendb

# Visual Studio profiler
*.diagsession
*.psess
*.vsp
*.vspx
Expand Down Expand Up @@ -286,3 +287,7 @@ __pycache__/
*.btm.cs
*.odx.cs
*.xsd.cs

# BenchmarkDotNet profiler files
*.nettrace
*.speedscope.json
Loading
Loading