You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# The benchmark comparer is currently taken from dotnet/performance/src/tools/ResultsComparer (hoping that a 'tool' would eventually be made available)
107
107
- name: Download ResultsComparer
108
108
uses: actions/checkout@v2
109
109
with:
110
110
repository: dotnet/performance
111
111
path: comparer
112
-
112
+
113
113
- uses: actions/setup-dotnet@v1
114
114
with:
115
-
dotnet-version: '3.1.x'
116
-
115
+
dotnet-version: "3.1.x"
116
+
117
117
- run: mkdir -p artifacts
118
-
118
+
119
119
# Executing the comparer, placing the result in a 'comparison' folder (as well as creating a summary from the output)
120
120
- name: Running the ResultsComparer
121
121
env:
122
-
PERFLAB_TARGET_FRAMEWORKS: netcoreapp3.1
123
-
run: >
122
+
PERFLAB_TARGET_FRAMEWORKS: net6.0
123
+
run: >
124
124
dotnet run --project 'comparer/src/tools/ResultsComparer' -c Release
Copy file name to clipboardExpand all lines: UnitsNet.Benchmark/Scripts/json-export-all-runtimes.bat
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -4,8 +4,8 @@ SET projectdir="%scriptdir%..\.."
4
4
SETexportdir="%projectdir%\Artifacts\Benchmark"
5
5
:: this fails on the build server (also tested with the nightly benchmark.net package: 0.12.1.1533): possibly related to https://github.com/dotnet/BenchmarkDotNet/issues/1487
6
6
dotnet run --project "%projectdir%/UnitsNet.Benchmark" -c Release ^
:: this runs fine, however there is currently no way of displaying multiple-lines-per-chart: see https://github.com/rhysd/github-action-benchmark/issues/18
Copy file name to clipboardExpand all lines: UnitsNet.Benchmark/Scripts/json-export-net5.bat
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ SET exportdir="%projectdir%\Artifacts\Benchmark"
5
5
:: this fails on the build server (also tested with the nightly benchmark.net package: 0.12.1.1533): possibly related to https://github.com/dotnet/BenchmarkDotNet/issues/1487
6
6
dotnet run --project "%projectdir%\UnitsNet.Benchmark" -c Release ^
:: this runs fine, however there is currently no way of displaying multiple-lines-per-chart: see https://github.com/rhysd/github-action-benchmark/issues/18
Copy file name to clipboardExpand all lines: UnitsNet.Benchmark/Scripts/r-plot-all-runtimes.bat
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ SET exportdir="%projectdir%\Artifacts\Benchmark"
5
5
:: this fails on the build server (also tested with the nightly benchmark.net package: 0.12.1.1533): possibly related to https://github.com/dotnet/BenchmarkDotNet/issues/1487
6
6
dotnet run --project "%projectdir%\UnitsNet.Benchmark" -c Release ^
0 commit comments