chore: use .net 8 for benchmarking and prematurely test .net 8
Some checks failed
Test if Server can be built / build-server (push) Failing after 11s

This commit is contained in:
Timothy Schenk 2023-10-27 19:27:10 +02:00
parent 555ec5c392
commit 20931b5751
3 changed files with 5 additions and 6 deletions

View file

@ -4,8 +4,8 @@
<OutputType>Exe</OutputType> <OutputType>Exe</OutputType>
<ImplicitUsings>enable</ImplicitUsings> <ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
<LangVersion>default</LangVersion> <LangVersion>preview</LangVersion>
<TargetFramework>net7.0</TargetFramework> <TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>

View file

@ -5,13 +5,12 @@ using BenchmarkDotNet.Attributes;
using BenchmarkDotNet.Jobs; using BenchmarkDotNet.Jobs;
using BenchmarkDotNet.Order; using BenchmarkDotNet.Order;
[SimpleJob(RuntimeMoniker.NativeAot70)] [SimpleJob(RuntimeMoniker.Net80)]
[SimpleJob(RuntimeMoniker.Net70)] [SimpleJob(RuntimeMoniker.Net70)]
[SimpleJob(RuntimeMoniker.Net60)] [SimpleJob(RuntimeMoniker.Net60)]
[Orderer(SummaryOrderPolicy.FastestToSlowest)] [Orderer(SummaryOrderPolicy.FastestToSlowest)]
[RankColumn] [RankColumn]
[MemoryDiagnoser] [MemoryDiagnoser]
[ExceptionDiagnoser]
[ThreadingDiagnoser] [ThreadingDiagnoser]
public class BinaryConversionBenchmarks public class BinaryConversionBenchmarks
{ {

View file

@ -1,7 +1,7 @@
{ {
"sdk": { "sdk": {
"version": "7.0.401", "version": "8.0.0",
"rollForward": "latestMinor", "rollForward": "latestMinor",
"allowPrerelease": false "allowPrerelease": true
} }
} }