[wasm] Pin the version of chrome used for tests - `109.0.5414.119` (#81814)
authorAnkit Jain <radical@gmail.com>
Wed, 8 Feb 2023 06:12:15 +0000 (01:12 -0500)
committerGitHub <noreply@github.com>
Wed, 8 Feb 2023 06:12:15 +0000 (01:12 -0500)
* [wasm] Pin the version of chrome used for tests

Related: https://github.com/dotnet/runtime/issues/81792

The debugger tests are breaking with the latest stable chrome version
`110.0.5481.77`. As a temporary workaround to keep the CI green, pin the
version to the previous working one.

* fix windows url

eng/testing/ProvisioningVersions.props

index b4b8f8c..74362b4 100644 (file)
 
     Refer to `GetChromeVersions` task in `src/tasks` to see how we find
     these snapshot urls.
+  -->
 
   <PropertyGroup Label="Use specific version of chrome" Condition="$([MSBuild]::IsOSPlatform('linux'))">
-    <ChromeVersion>107.0.5304.110</ChromeVersion>
-    <ChromeRevision>1047731</ChromeRevision>
-    <_ChromeBaseSnapshotUrl>https://storage.googleapis.com/chromium-browser-snapshots/Linux_x64/1047731</_ChromeBaseSnapshotUrl>
+    <ChromeVersion>109.0.5414.119</ChromeVersion>
+    <ChromeRevision>1070088</ChromeRevision>
+    <_ChromeBaseSnapshotUrl>https://storage.googleapis.com/chromium-browser-snapshots/Linux_x64/1070096</_ChromeBaseSnapshotUrl>
   </PropertyGroup>
   <PropertyGroup Label="Use specific version of chrome" Condition="$([MSBuild]::IsOSPlatform('windows'))">
-    <ChromeVersion>107.0.5304.107</ChromeVersion>
-    <ChromeRevision>1047731</ChromeRevision>
-    <_ChromeBaseSnapshotUrl>https://storage.googleapis.com/chromium-browser-snapshots/Win_x64/1047737</_ChromeBaseSnapshotUrl>
+    <ChromeVersion>109.0.5414.120</ChromeVersion>
+    <ChromeRevision>1070088</ChromeRevision>
+    <_ChromeBaseSnapshotUrl>https://storage.googleapis.com/chromium-browser-snapshots/Win_x64/1070094</_ChromeBaseSnapshotUrl>
   </PropertyGroup>
 
-  -->
-
   <PropertyGroup Condition="'$(BrowserHost)' != 'windows'">
     <FirefoxRevision>108.0.1</FirefoxRevision>
     <FirefoxUrl>https://ftp.mozilla.org/pub/firefox/releases/$(FirefoxRevision)/linux-x86_64/en-US/firefox-$(FirefoxRevision).tar.bz2</FirefoxUrl>