Skip to content

Commit

Permalink
Skip analyzers
Browse files Browse the repository at this point in the history
  • Loading branch information
MihaZupan committed May 27, 2024
1 parent e3fc671 commit 80c64c9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Runner/FuzzLibrariesJob.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ git fetch pr {{SourceBranch}}
git log pr/{{SourceBranch}} -1
git merge --no-edit pr/{{SourceBranch}}
call .\build.cmd clr+libs+packs+host -rc Checked -c Debug
call .\build.cmd clr+libs+packs+host -rc Checked -c Debug /p:RunAnalyzers=false
cd src\libraries\Fuzzing\DotnetFuzzing
..\..\..\..\.dotnet\dotnet publish -o publish
Expand Down
2 changes: 1 addition & 1 deletion Runner/JitDiffJob.cs
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ async Task BuildAndCopyRuntimeBranchBitsAsync(string branch)
{
string arch = IsArm ? "arm64" : "x64";

await RunProcessAsync("bash", "build.sh clr+libs -c Release", logPrefix: $"{branch} release", workDir: "runtime");
await RunProcessAsync("bash", "build.sh clr+libs -c Release -p:RunAnalyzers=false", logPrefix: $"{branch} release", workDir: "runtime");

Task copyReleaseBitsTask = Task.Run(async () =>
{
Expand Down

0 comments on commit 80c64c9

Please sign in to comment.