File tree Expand file tree Collapse file tree 1 file changed +26
-3
lines changed Expand file tree Collapse file tree 1 file changed +26
-3
lines changed Original file line number Diff line number Diff line change 11
11
12
12
jobs :
13
13
build :
14
-
15
14
runs-on : ubuntu-latest
16
15
17
16
steps :
20
19
uses : actions/setup-dotnet@v3
21
20
with :
22
21
dotnet-version : 9.x
23
- - name : Restore dependencies
22
+ - name : Restore
24
23
run : dotnet restore
25
24
- name : Build
26
25
run : dotnet build --no-restore
31
30
run : dotnet run -c Release --framework net9.0 --runtimes net9.0 --filter '*DecodeBenchmark*'
32
31
- name : Encode Benchmark
33
32
working-directory : ./benchmarks/PolylineAlgorithm.Benchmarks
34
- run : dotnet run -c Release --framework net9.0 --runtimes net9.0 --filter '*EncodeBenchmark*'
33
+ run : dotnet run -c Release --framework net9.0 --runtimes net9.0 --filter '*EncodeBenchmark*'
34
+ benchmark :
35
+ strategy :
36
+ matrix :
37
+ os : [ubuntu-latest, windows-latest, macos-latest]
38
+ runs-on : $
39
+
40
+ concurrency :
41
+ group : becnhmark-group
42
+ cancel-in-progress : true
43
+
44
+ steps :
45
+ - uses : actions/checkout@v3
46
+ - name : Setup .NET 9
47
+ uses : actions/setup-dotnet@v3
48
+ with :
49
+ dotnet-version : 9.x
50
+ - name : Restore
51
+ run : dotnet restore
52
+ - name : Decode Benchmark
53
+ working-directory : ./benchmarks/PolylineAlgorithm.Benchmarks
54
+ run : dotnet run -c Release --no-restore --framework net9.0 --runtimes net9.0 --filter '*DecodeBenchmark*'
55
+ - name : Encode Benchmark
56
+ working-directory : ./benchmarks/PolylineAlgorithm.Benchmarks
57
+ run : dotnet run -c Release --no-restore --framework net9.0 --runtimes net9.0 --filter '*EncodeBenchmark*'
You can’t perform that action at this time.
0 commit comments