Skip to content

Commit

Permalink
[wasm] Pin the version of chrome used for tests
Browse files Browse the repository at this point in the history
Related: dotnet#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.
  • Loading branch information
radical committed Feb 8, 2023
1 parent d913b94 commit c8ac026
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions eng/testing/ProvisioningVersions.props
Original file line number Diff line number Diff line change
Expand Up @@ -39,20 +39,19 @@
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.119</ChromeVersion>
<ChromeRevision>1070088</ChromeRevision>
<_ChromeBaseSnapshotUrl>https://storage.googleapis.com/chromium-browser-snapshots/Linux_x64/1070096</_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>
Expand Down

0 comments on commit c8ac026

Please sign in to comment.