1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 11:22:43 +02:00

Fix mv3 beta build (#18690)

* Build beta with mv3 enabled

* Ensure firefox manifest is an mv2 version

* Revert "Ensure firefox manifest is an mv2 version"

This reverts commit fed74792b0fec33c3a85f2229eb560559d37afe5.

* Only create beta builds for the chrome platform

* Stop linting firefox for beta
This commit is contained in:
Dan J Miller 2023-04-26 12:26:33 -02:30
parent 366ffe67c3
commit f89f96343b
4 changed files with 14 additions and 47 deletions

View File

@ -143,11 +143,6 @@ workflows:
requires:
- prep-deps
- prep-build
- test-mozilla-lint-beta:
<<: *rc_branch_only
requires:
- prep-deps
- trigger-beta-build
- test-mozilla-lint-desktop:
filters:
branches:
@ -176,7 +171,6 @@ workflows:
- validate-source-maps-desktop
- validate-source-maps-flask
- test-mozilla-lint
- test-mozilla-lint-beta
- test-mozilla-lint-desktop
- test-mozilla-lint-flask
- test-e2e-chrome
@ -1144,17 +1138,6 @@ jobs:
name: test:mozilla-lint
command: NODE_OPTIONS=--max_old_space_size=3072 yarn mozilla-lint
test-mozilla-lint-beta:
executor: node-browsers
steps:
- checkout
- attach_workspace:
at: .
- run:
name: Lint beta for firefox
command: |
.circleci/scripts/mozilla-lint-beta.sh
test-mozilla-lint-desktop:
executor: node-browsers
steps:

View File

@ -1,27 +0,0 @@
#!/usr/bin/env bash
set -e
set -u
set -o pipefail
current_commit_msg=$(git show -s --format='%s' HEAD)
if [[ $current_commit_msg =~ Version[[:space:]](v[[:digit:]]+.[[:digit:]]+.[[:digit:]]+[-]beta.[[:digit:]]) ]]
then
# filter the commit message like Version v10.24.1-beta.1
printf '%s\n' "Linting beta builds for firefox"
# Move beta build to dist
mv ./dist-beta ./dist
# Move beta zips to builds
mv ./builds-beta ./builds
# test:mozilla-lint
export NODE_OPTIONS='--max_old_space_size=3072'
yarn mozilla-lint
else
printf '%s\n' 'Commit message does not match commit message for beta pattern; skipping linting for firefox'
mkdir dist
mkdir builds
exit 0
fi
exit 0

View File

@ -12,8 +12,9 @@ if [[ $current_commit_msg =~ Version[[:space:]](v[[:digit:]]+.[[:digit:]]+.[[:di
then
# filter the commit message like Version v10.24.1-beta.1
printf '%s\n' "Create a build for $version with beta version $current_commit_msg"
yarn build --build-type beta dist
yarn build --build-type beta prod
export ENABLE_MV3=true
yarn build --build-type beta --platform='chrome' dist
yarn build --build-type beta --platform='chrome' prod
else
printf '%s\n' 'Commit message does not match commit message for beta pattern; skipping beta automation build'
mkdir dist

View File

@ -71,6 +71,7 @@ async function defineAndRunBuildTasks() {
shouldLintFenceFiles,
skipStats,
version,
platform,
} = await parseArgv();
// scuttle on production/tests environment only
@ -129,7 +130,7 @@ async function defineAndRunBuildTasks() {
],
});
const browserPlatforms = ['firefox', 'chrome'];
const browserPlatforms = platform ? [platform] : ['firefox', 'chrome'];
const browserVersionMap = getBrowserVersionMap(browserPlatforms, version);
@ -311,6 +312,13 @@ testDev: Create an unoptimized, live-reloading build for debugging e2e tests.`,
hidden: true,
type: 'boolean',
})
.option('platform', {
default: '',
description:
'Specify a single browser platform to build for. Either `chrome` or `firefox`',
hidden: true,
type: 'string',
})
.check((args) => {
if (!Number.isInteger(args.buildVersion)) {
throw new Error(
@ -335,6 +343,7 @@ testDev: Create an unoptimized, live-reloading build for debugging e2e tests.`,
policyOnly,
skipStats,
task,
platform,
} = argv;
// Manually default this to `false` for dev builds only.
@ -365,6 +374,7 @@ testDev: Create an unoptimized, live-reloading build for debugging e2e tests.`,
shouldLintFenceFiles,
skipStats,
version,
platform,
};
}