File tree 2 files changed +6
-3
lines changed
2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 39
39
40
40
Refer to `GetChromeVersions` task in `src/tasks` to see how we find
41
41
these snapshot urls.
42
- -->
42
+
43
43
<PropertyGroup Label="Use specific version of chrome" Condition="$([MSBuild]::IsOSPlatform('linux'))">
44
44
<ChromeVersion>107.0.5304.110</ChromeVersion>
45
45
<ChromeRevision>1047731</ChromeRevision>
51
51
<_ChromeBaseSnapshotUrl>https://storage.googleapis.com/chromium-browser-snapshots/Win_x64/1047737</_ChromeBaseSnapshotUrl>
52
52
</PropertyGroup>
53
53
54
+ -->
55
+
54
56
<PropertyGroup Condition =" '$(BrowserHost)' != 'windows'" >
55
57
<FirefoxRevision >108.0.1</FirefoxRevision >
56
58
<FirefoxUrl >https://ftp.mozilla.org/pub/firefox/releases/$(FirefoxRevision)/linux-x86_64/en-US/firefox-$(FirefoxRevision).tar.bz2</FirefoxUrl >
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ public class GetChromeVersions : MBU.Task
22
22
private const string s_allJsonUrl = "http://omahaproxy.appspot.com/all.json" ;
23
23
private const string s_snapshotBaseUrl = $ "https://storage.googleapis.com/chromium-browser-snapshots";
24
24
private const int s_versionCheckThresholdDays = 3 ;
25
- private const int s_numBranchPositionsToTry = 30 ;
25
+ private const int s_numBranchPositionsToTry = 50 ;
26
26
private static readonly HttpClient s_httpClient = new ( ) ;
27
27
28
28
public string Channel { get ; set ; } = "stable" ;
@@ -103,7 +103,8 @@ private async Task<string> GetChromeUrlsAsync(ChromeVersionSpec version)
103
103
104
104
throw new LogAsErrorException ( $ "Could not find a chrome snapshot folder under { baseUrl } , " +
105
105
$ "for branch positions { version . branch_base_position } to " +
106
- $ "{ branchPosition } , for version { version . version } .") ;
106
+ $ "{ branchPosition } , for version { version . version } . " +
107
+ "A fixed version+url can be set in eng/testing/ProvisioningVersions.props ." ) ;
107
108
}
108
109
109
110
private async Task < ChromeVersionSpec > GetChromeVersionAsync ( )
You can’t perform that action at this time.
0 commit comments