Skip to content

Commit c9a1e47

Browse files
committed
!temporary! Disable Windows x86 binary log
1 parent dcf49a0 commit c9a1e47

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.azure/pipelines/ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,6 @@ stages:
159159
-buildNative
160160
-noBuildJava
161161
/p:OnlyPackPlatformSpecificPackages=true
162-
/bl:artifacts/log/build.x86.binlog
163162
$(_BuildArgs)
164163
$(_InternalRuntimeDownloadArgs)
165164
displayName: Build x86

build.ps1

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,6 @@ if ($ForceCoreMsbuild) {
344344
}
345345

346346
# Workaround Arcade check which asserts BinaryLog is true on CI.
347-
# We always use binlogs on CI, but we customize the name of the log file
348347
$tmpBinaryLog = $BinaryLog
349348
if ($CI) {
350349
$BinaryLog = $true
@@ -362,6 +361,9 @@ Remove-Item variable:global:_MSBuildExe -ea Ignore
362361
if ($tmpBinaryLog) {
363362
$MSBuildArguments += "/bl:$LogDir/Build.binlog"
364363
}
364+
else {
365+
$BinaryLog = $tmpBinaryLog
366+
}
365367

366368
# Capture MSBuild crash logs
367369
$env:MSBUILDDEBUGPATH = $LogDir

0 commit comments

Comments
 (0)