Skip to content

Commit ea4b983

Browse files
committed
Install ninja everywhere, rebuild docker
1 parent 3903c3b commit ea4b983

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

Runner/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ FROM mcr.microsoft.com/dotnet/sdk:10.0
1111
WORKDIR /app
1212
COPY --from=build /app/out .
1313

14-
RUN apt-get update && apt-get install -y dotnet-sdk-8.0 ninja-build
14+
RUN apt-get update && apt-get install -y dotnet-sdk-8.0
1515

1616
WORKDIR /runner
1717
VOLUME /runner

Runner/Jobs/BenchmarkLibrariesJob.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ private async Task CloneDotnetPerformanceAndSetupToolsAsync()
169169
}
170170
});
171171

172-
Task aptGetTask = RunProcessAsync("apt-get", "install -y zip wget p7zip-full", logPrefix: "Install tools");
172+
Task aptGetTask = RunProcessAsync("apt-get", "install -y zip wget p7zip-full ninja-build", logPrefix: "Install tools");
173173

174174
Directory.CreateDirectory("artifacts-main");
175175
Directory.CreateDirectory("artifacts-pr");

Runner/Jobs/CoreRootGenerationJob.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ private async Task CloneRuntimeAndSetupToolsAsync()
4040
{
4141
Task cloneRuntimeTask = RuntimeHelpers.CloneRuntimeMainAsync(this);
4242

43-
Task aptGetTask = RunProcessAsync("apt-get", "install -y zip wget p7zip-full", logPrefix: "Install tools");
43+
Task aptGetTask = RunProcessAsync("apt-get", "install -y zip wget p7zip-full ninja-build", logPrefix: "Install tools");
4444

4545
await aptGetTask;
4646
await cloneRuntimeTask;

Runner/Jobs/JitDiffJob.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ public static async Task CloneRuntimeAndSetupToolsAsync(JobBase job)
135135
{
136136
Task cloneRuntimeTask = RuntimeHelpers.CloneRuntimeAsync(job);
137137

138-
Task setupZipAndWgetTask = job.RunProcessAsync("apt-get", "install -y zip wget", logPrefix: "Setup zip & wget");
138+
Task setupZipAndWgetTask = job.RunProcessAsync("apt-get", "install -y zip wget ninja-build", logPrefix: "Setup zip & wget");
139139

140140
Task setupJitutilsTask = Task.Run(async () =>
141141
{

0 commit comments

Comments
 (0)