-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Fix potential race in ExecuteFullClear and ExecuteFullEviction when joining already running operation - Simplify clearing arr. on quicklist reset - Update benchmark docker image - Update TFM ifdef in TimeUtils
- Loading branch information
1 parent
724d628
commit 04756b6
Showing
5 changed files
with
16 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
**/bin | ||
**/obj | ||
**/BenchmarkDotNet.Artifacts | ||
**/BenchmarkDotNet.Artifacts | ||
**/publish | ||
**/.idea |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
FROM mcr.microsoft.com/dotnet/sdk:7.0 | ||
FROM mcr.microsoft.com/dotnet/sdk:8.0.100-preview.5 | ||
WORKDIR /app | ||
COPY src . | ||
RUN dotnet build FastCache.Benchmarks/FastCache.Benchmarks.csproj -c release -f net7.0 | ||
|
||
ENV DOTNET_ReadyToRun=0 | ||
ENV DOTNET_TieredPGO=1 | ||
ENV DOTNET_JitVTableProfiling=1 | ||
ENV DOTNET_JitProfileCasts=1 | ||
COPY src . | ||
COPY Directory.Build.props . | ||
RUN dotnet publish FastCache.Benchmarks/FastCache.Benchmarks.csproj \ | ||
-c release \ | ||
-o publish \ | ||
-f net8.0 | ||
|
||
CMD dotnet run --project FastCache.Benchmarks/FastCache.Benchmarks.csproj -c release -f net7.0 | ||
# Must be run interactively | ||
CMD ./publish/FastCache.Benchmarks |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters