Skip to content

Commit

Permalink
Infra fixes (dotnet#67223)
Browse files Browse the repository at this point in the history
* Infra fixes

- Set bootstrap build verbosity to minimal. That will clean up our log
  files _significantly_
- Include Compiler NuPkg in the compiler file subset

* Apply suggestions from code review

Co-authored-by: Youssef Victor <youssefvictor00@gmail.com>

---------

Co-authored-by: Youssef Victor <youssefvictor00@gmail.com>
  • Loading branch information
Jared Parsons and Youssef1313 committed Mar 8, 2023
1 parent 5b924e8 commit ac14e43
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,7 @@ stages:
include:
- src/Compilers/*
- src/Dependencies/*
- src/NuGet/Microsoft.Net.Compilers.Toolset/*
- eng/*
- src/Tools/Source/CompilerGeneratorTools/*

Expand Down
2 changes: 1 addition & 1 deletion eng/build-utils.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ function Make-BootstrapBuild([switch]$force32 = $false) {
# that we do not reuse MSBuild nodes from other jobs/builds on the machine. Otherwise,
# we'll run into issues such as https://github.com/dotnet/roslyn/issues/6211.
# MSBuildAdditionalCommandLineArgs=
$args = "/p:TreatWarningsAsErrors=true /nologo /nodeReuse:false /p:Configuration=$configuration ";
$args = "/p:TreatWarningsAsErrors=true /nologo /nodeReuse:false /p:Configuration=$configuration /v:m ";

if ($warnAsError) {
$args += " /warnaserror"
Expand Down

0 comments on commit ac14e43

Please sign in to comment.