Unverified Commit ce565c33 authored by Joseph Stahl's avatar Joseph Stahl
Browse files

recyclarr: disable concurrency when building

Dotnet defaults to parallel builds, this produces an occasional error message
(so far only reproduced on x86_64-linux) about `The process cannot access the file`.
With concurrency disabled by only using a single core to build, the error no longer appears.
parent 75430f0a
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -37,7 +37,10 @@ buildDotnetModule (finalAttrs: {

  doCheck = false;

  dotnetBuildFlags = [ "-p:DisableGitVersionTask=true" ];
  dotnetBuildFlags = [
    "-p:DisableGitVersionTask=true"
    "/m:1"
  ];

  dotnet-sdk = dotnetCorePackages.sdk_10_0;
  dotnet-runtime = dotnetCorePackages.runtime_10_0;