From 0e860be721f2d7b4a55249e669ac04f83f18c578 Mon Sep 17 00:00:00 2001 From: Mackinnon Buck Date: Tue, 25 Mar 2025 09:58:08 -0700 Subject: [PATCH 1/3] Disable TerminalLogger for Helix tests --- .azure/pipelines/ci-public.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.azure/pipelines/ci-public.yml b/.azure/pipelines/ci-public.yml index d8ee22ad718b..1ccd78f00825 100644 --- a/.azure/pipelines/ci-public.yml +++ b/.azure/pipelines/ci-public.yml @@ -570,11 +570,13 @@ stages: # Build the shared framework - script: ./eng/build.cmd -ci -prepareMachine -nativeToolsOnMachine -nobl -all -pack -arch x64 /p:CrossgenOutput=false /p:ASPNETCORE_TEST_LOG_DIR=artifacts/log $(_InternalRuntimeDownloadArgs) + /p:VsTestUseMSBuildOutput=false displayName: Build shared fx # -noBuildRepoTasks -noBuildNative -noBuild to avoid repeating work done in the previous step. - script: ./eng/build.cmd -ci -prepareMachine -nativeToolsOnMachine -nobl -all -noBuildRepoTasks -noBuildNative -noBuild -test -projects eng\helix\helix.proj /p:IsHelixPRCheck=true /p:IsHelixJob=true /p:CrossgenOutput=false /p:ASPNETCORE_TEST_LOG_DIR=artifacts/log $(_InternalRuntimeDownloadArgs) + /p:VsTestUseMSBuildOutput=false displayName: Run build.cmd helix target env: HelixApiAccessToken: $(HelixApiAccessToken) # Needed for internal queues From 1de65ea8ee546924962ee1015ece73a53c766f49 Mon Sep 17 00:00:00 2001 From: Mackinnon Buck Date: Tue, 25 Mar 2025 11:37:43 -0700 Subject: [PATCH 2/3] Try different Chrome download link --- eng/scripts/InstallGoogleChrome.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/scripts/InstallGoogleChrome.ps1 b/eng/scripts/InstallGoogleChrome.ps1 index 2159c7de09d1..2797ed3cdb95 100644 --- a/eng/scripts/InstallGoogleChrome.ps1 +++ b/eng/scripts/InstallGoogleChrome.ps1 @@ -1,4 +1,4 @@ $InstallerPath = "$env:Temp\chrome_installer.exe"; -& $PSScriptRoot\Download.ps1 "http://dl.google.com/chrome/install/375.126/chrome_installer.exe" $InstallerPath +& $PSScriptRoot\Download.ps1 "http://dl.google.com/chrome/install/latest/chrome_installer.exe" $InstallerPath Start-Process -FilePath $InstallerPath -Args "/silent /install" -Verb RunAs -Wait; Remove-Item $InstallerPath From ce3161ac326d8cb91c302a38d3ed4a1a82ef0603 Mon Sep 17 00:00:00 2001 From: Mackinnon Buck Date: Tue, 25 Mar 2025 13:09:01 -0700 Subject: [PATCH 3/3] Fix download link --- eng/scripts/InstallGoogleChrome.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/scripts/InstallGoogleChrome.ps1 b/eng/scripts/InstallGoogleChrome.ps1 index 2797ed3cdb95..c62dbb2535cf 100644 --- a/eng/scripts/InstallGoogleChrome.ps1 +++ b/eng/scripts/InstallGoogleChrome.ps1 @@ -1,4 +1,4 @@ $InstallerPath = "$env:Temp\chrome_installer.exe"; -& $PSScriptRoot\Download.ps1 "http://dl.google.com/chrome/install/latest/chrome_installer.exe" $InstallerPath +& $PSScriptRoot\Download.ps1 "https://dl.google.com/chrome/install/latest/chrome_installer.exe" $InstallerPath Start-Process -FilePath $InstallerPath -Args "/silent /install" -Verb RunAs -Wait; Remove-Item $InstallerPath