mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 01:47:00 +01:00
e8b7fcf8dc
The LavaMoat policy generation script would sporadically fail because it ran the build concurrently three times, and the build includes steps that delete the `dist` directory and write to it. So if one build process tried to write to the directory after another deleted it, it would fail. This was solved by adding a new `--policy-only` flag to the build script, and a new `scripts:prod` task. The `scripts:prod` task only runs the script tasks for prod, rather than the entire build process. The `--policy-only` flag stops the script tasks once the policy has been written, and stops any other files from being written to disk. This prevents the three concurrent build processes from getting in each others way, and it dramatically speeds up the process.
14 lines
481 B
Bash
Executable File
14 lines
481 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
set -u
|
|
set -o pipefail
|
|
|
|
# Generate LavaMoat policies for the extension background script for each build
|
|
# type.
|
|
# ATTN: This may tax your device when running it locally.
|
|
concurrently --kill-others-on-fail -n main,beta,flask \
|
|
"WRITE_AUTO_POLICY=1 yarn build scripts:prod --policy-only" \
|
|
"WRITE_AUTO_POLICY=1 yarn build scripts:prod --policy-only --build-type beta" \
|
|
"WRITE_AUTO_POLICY=1 yarn build scripts:prod --policy-only --build-type flask"
|