Skip to content

Commit 401b7f7

Browse files
Update Chrome download link and disable TerminalLogger for Helix tests (#61157)
1 parent ab38f49 commit 401b7f7

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.azure/pipelines/ci-public.yml

+2
Original file line numberDiff line numberDiff line change
@@ -570,11 +570,13 @@ stages:
570570
# Build the shared framework
571571
- script: ./eng/build.cmd -ci -prepareMachine -nativeToolsOnMachine -nobl -all -pack -arch x64
572572
/p:CrossgenOutput=false /p:ASPNETCORE_TEST_LOG_DIR=artifacts/log $(_InternalRuntimeDownloadArgs)
573+
/p:VsTestUseMSBuildOutput=false
573574
displayName: Build shared fx
574575
# -noBuildRepoTasks -noBuildNative -noBuild to avoid repeating work done in the previous step.
575576
- script: ./eng/build.cmd -ci -prepareMachine -nativeToolsOnMachine -nobl -all -noBuildRepoTasks -noBuildNative -noBuild -test
576577
-projects eng\helix\helix.proj /p:IsHelixPRCheck=true /p:IsHelixJob=true
577578
/p:CrossgenOutput=false /p:ASPNETCORE_TEST_LOG_DIR=artifacts/log $(_InternalRuntimeDownloadArgs)
579+
/p:VsTestUseMSBuildOutput=false
578580
displayName: Run build.cmd helix target
579581
env:
580582
HelixApiAccessToken: $(HelixApiAccessToken) # Needed for internal queues

eng/scripts/InstallGoogleChrome.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
$InstallerPath = "$env:Temp\chrome_installer.exe";
2-
& $PSScriptRoot\Download.ps1 "http://dl.google.com/chrome/install/375.126/chrome_installer.exe" $InstallerPath
2+
& $PSScriptRoot\Download.ps1 "https://dl.google.com/chrome/install/latest/chrome_installer.exe" $InstallerPath
33
Start-Process -FilePath $InstallerPath -Args "/silent /install" -Verb RunAs -Wait;
44
Remove-Item $InstallerPath

0 commit comments

Comments
 (0)