Skip to content

Commit 7d9dad7

Browse files
committed
Cleanup: Remove a few dangling binary logs
1 parent 648cc82 commit 7d9dad7

File tree

4 files changed

+6
-9
lines changed

4 files changed

+6
-9
lines changed

.azure/pipelines/jobs/codesign-xplat.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ jobs:
3030
flattenFolders: true
3131
- powershell: .\eng\common\build.ps1
3232
-ci
33+
-nobl
3334
-restore
3435
-sign
3536
-publish

.azure/pipelines/quarantined-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@ jobs:
3131
timeoutInMinutes: 240
3232
steps:
3333
# Build the shared framework
34-
- script: ./build.cmd -ci -all -pack -arch x64 /p:ASPNETCORE_TEST_LOG_DIR=artifacts/log /bl:artifacts/log/helix.build.x64.binlog
34+
- script: ./build.cmd -ci -nobl -all -pack -arch x64 /p:ASPNETCORE_TEST_LOG_DIR=artifacts/log
3535
displayName: Build shared fx
3636
- script: ./build.cmd -ci -nobl -noBuildRepoTasks -restore -noBuild -projects src/Grpc/**/*.csproj
3737
displayName: Restore interop projects
38-
- script: ./build.cmd -ci -noBuildRepoTasks -noRestore -test -all -noBuildJava -noBuildNative
38+
- script: ./build.cmd -ci -nobl -noBuildRepoTasks -noRestore -test -all -noBuildJava -noBuildNative
3939
-projects eng\helix\helix.proj /p:RunQuarantinedTests=true /p:IsRequiredCheck=true /p:IsHelixJob=true
4040
/p:BuildInteropProjects=true /p:RunTemplateTests=true /p:ASPNETCORE_TEST_LOG_DIR=artifacts/log
4141
displayName: Run build.cmd helix target

eng/scripts/GenerateProjectList.ps1

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,7 @@ $msbuildEngine = 'dotnet'
77
$repoRoot = Resolve-Path "$PSScriptRoot/../.."
88

99
try {
10-
& "$repoRoot\eng\common\msbuild.ps1" -ci:$ci "$repoRoot/eng/CodeGen.proj" `
11-
/t:GenerateProjectList `
12-
/bl:artifacts/log/genprojlist.binlog
10+
& "$repoRoot\eng\common\msbuild.ps1" -ci:$ci -nobl "$repoRoot/eng/CodeGen.proj" /t:GenerateProjectList
1311
} finally {
1412
Remove-Item variable:global:_BuildTool -ErrorAction Ignore
1513
Remove-Item variable:global:_DotNetInstallDir -ErrorAction Ignore

eng/scripts/GenerateReferenceAssemblies.ps1

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,15 @@ $repoRoot = Resolve-Path "$PSScriptRoot/../.."
77

88
try {
99
# eng/common/msbuild.ps1 builds the Debug configuration unless there's a $Configuration variable. Match that here.
10-
& "$repoRoot\build.ps1" -ci:$ci -nobl -buildNative -configuration Debug
10+
& "$repoRoot\build.ps1" -ci:$ci -nobl -noBuildRepoTasks -noRestore -buildNative -configuration Debug
1111

1212
Remove-Item variable:global:_BuildTool -ErrorAction Ignore
1313
Remove-Item variable:global:_DotNetInstallDir -ErrorAction Ignore
1414
Remove-Item variable:global:_ToolsetBuildProj -ErrorAction Ignore
1515
Remove-Item variable:global:_MSBuildExe -ErrorAction Ignore
1616

1717
$msbuildEngine = 'dotnet'
18-
& "$repoRoot\eng\common\msbuild.ps1" -ci:$ci "$repoRoot/eng/CodeGen.proj" `
19-
/t:GenerateReferenceSources `
20-
/bl:artifacts/log/genrefassemblies.binlog
18+
& "$repoRoot\eng\common\msbuild.ps1" -ci:$ci -nobl "$repoRoot/eng/CodeGen.proj" /t:GenerateReferenceSources
2119
} finally {
2220
Remove-Item variable:global:_BuildTool -ErrorAction Ignore
2321
Remove-Item variable:global:_DotNetInstallDir -ErrorAction Ignore

0 commit comments

Comments
 (0)