As described in #1170 I am working on making it possible to run the performance repo microbenchmarks using the ASP.NET Infrastructure.
The only blocker that remains active when following PRs get merged:
dotnet/performance#591 (already merged)
dotnet/performance#592 (already merged)
dotnet/performance#594 (already merged)
#1170
is missing libgdiplus which is used by System.Drawing microbenchmarks on Linux.

@sebastienros would it be possible to install libgdiplus on the Linux machines in ASP.NET perf lab? Would it be enough if I just send a PR to
|
RUN apt-get update \ |
|
&& apt-get install -y --no-install-recommends \ |
|
# dotnet dependencies? |
|
libunwind-dev \ |
and extend it with libgdiplus ?
As described in #1170 I am working on making it possible to run the performance repo microbenchmarks using the ASP.NET Infrastructure.
The only blocker that remains active when following PRs get merged:
dotnet/performance#591 (already merged)
dotnet/performance#592 (already merged)
dotnet/performance#594 (already merged)
#1170
is missing
libgdipluswhich is used bySystem.Drawingmicrobenchmarks on Linux.@sebastienros would it be possible to install
libgdipluson the Linux machines in ASP.NET perf lab? Would it be enough if I just send a PR toBenchmarks/docker/benchmarks/Dockerfile
Lines 3 to 6 in 06f077b
and extend it with
libgdiplus?