chore: verify chromium builds (#21730)
This commit is contained in:
parent
7879cf30f0
commit
f47a8a677c
|
|
@ -884,7 +884,8 @@ export class Registry {
|
||||||
const usedBrowserPath = descriptor.dir;
|
const usedBrowserPath = descriptor.dir;
|
||||||
const browserRevision = parseInt(descriptor.revision, 10);
|
const browserRevision = parseInt(descriptor.revision, 10);
|
||||||
// Old browser installations don't have marker file.
|
// Old browser installations don't have marker file.
|
||||||
const shouldHaveMarkerFile = (browserName === 'chromium' && browserRevision >= 786218) ||
|
// We switched chromium from 999999 to 1000, 300000 is the new Y2K.
|
||||||
|
const shouldHaveMarkerFile = (browserName === 'chromium' && (browserRevision >= 786218 || browserRevision < 300000)) ||
|
||||||
(browserName === 'firefox' && browserRevision >= 1128) ||
|
(browserName === 'firefox' && browserRevision >= 1128) ||
|
||||||
(browserName === 'webkit' && browserRevision >= 1307) ||
|
(browserName === 'webkit' && browserRevision >= 1307) ||
|
||||||
// All new applications have a marker file right away.
|
// All new applications have a marker file right away.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue