Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions eng/build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -395,6 +395,9 @@ if ($bootstrap -eq $True) {
$config = $((Get-Culture).TextInfo.ToTitleCase($configuration[0]))
$bootstrapArguments += " -configuration $config"

# Set a different path for prebuilt usage tracking for the bootstrap build.
$bootstrapArguments += " /p:TrackPrebuiltUsageReportFile=$PSScriptRoot/../artifacts/log/bootstrap-prebuilt-usage.xml"

$bootstrapArguments += " /p:Subset=bootstrap /bl:$PSScriptRoot/../artifacts/log/$config/bootstrap.binlog"
Invoke-Expression "& `"$PSScriptRoot/common/build.ps1`" $bootstrapArguments"

Expand Down
4 changes: 3 additions & 1 deletion eng/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -608,7 +608,9 @@ if [[ "$bootstrap" == "1" ]]; then
bootstrapArguments+=("$argument")
fi
done
"$scriptroot/common/build.sh" ${bootstrapArguments[@]+"${bootstrapArguments[@]}"} /p:Subset=bootstrap -bl:$scriptroot/../artifacts/log/$bootstrapConfig/bootstrap.binlog

# Set a different path for prebuilt usage tracking for the bootstrap build.
"$scriptroot/common/build.sh" ${bootstrapArguments[@]+"${bootstrapArguments[@]}"} /p:Subset=bootstrap /p:TrackPrebuiltUsageReportFile=$scriptroot/../artifacts/log/bootstrap-prebuilt-usage.xml -bl:$scriptroot/../artifacts/log/$bootstrapConfig/bootstrap.binlog

# Remove artifacts from the bootstrap build so the product build is a "clean" build.
echo "Cleaning up artifacts from bootstrap build..."
Expand Down
Loading