From 26b8f1f3b9484bc4aa7e72a10f5f334e6a0403d4 Mon Sep 17 00:00:00 2001 From: Mark Stacey Date: Wed, 9 Nov 2022 11:04:58 -0330 Subject: [PATCH] Remove obsolete builds The `brave` and `opera` builds are obsolete; in practice we have been using the Chrome build for those browsers, because they are based upon Chromium and are compatible with the Chrome extension API. --- development/build/index.js | 2 +- development/metamaskbot-build-announce.js | 2 +- docs/QA_Guide.md | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/development/build/index.js b/development/build/index.js index 628cbbbac657..a1a6874e68f6 100755 --- a/development/build/index.js +++ b/development/build/index.js @@ -71,7 +71,7 @@ async function defineAndRunBuildTasks() { version, } = await parseArgv(); - const browserPlatforms = ['firefox', 'chrome', 'brave', 'opera']; + const browserPlatforms = ['firefox', 'chrome']; const browserVersionMap = getBrowserVersionMap(browserPlatforms, version); diff --git a/development/metamaskbot-build-announce.js b/development/metamaskbot-build-announce.js index 8ce98ce67ff4..68557b0fcfc4 100755 --- a/development/metamaskbot-build-announce.js +++ b/development/metamaskbot-build-announce.js @@ -36,7 +36,7 @@ async function start() { // build the github comment content // links to extension builds - const platforms = ['chrome', 'firefox', 'opera']; + const platforms = ['chrome', 'firefox']; const buildLinks = platforms .map((platform) => { const url = `${BUILD_LINK_BASE}/builds/metamask-${platform}-${VERSION}.zip`; diff --git a/docs/QA_Guide.md b/docs/QA_Guide.md index dc5b94c40f34..a615d5f605a0 100644 --- a/docs/QA_Guide.md +++ b/docs/QA_Guide.md @@ -2,6 +2,7 @@ Steps to mark a full pass of QA complete. * Browsers: Opera, Chrome, Firefox, Edge. + * Use the Chrome build for all Chromium-derived browsers (e.g. Opera and Edge) * OS: Ubuntu, Mac OSX, Windows * Load older version of MetaMask and attempt to simulate updating the extension. * Open Developer Console in background and popup, inspect errors.