devops: support --juggler argument for firefox/build.sh script (#2472)
This commit is contained in:
parent
c03b39a30e
commit
95ef71c43c
|
|
@ -40,7 +40,11 @@ fi
|
||||||
OBJ_FOLDER="obj-build-playwright"
|
OBJ_FOLDER="obj-build-playwright"
|
||||||
echo "mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/${OBJ_FOLDER}" >> .mozconfig
|
echo "mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/${OBJ_FOLDER}" >> .mozconfig
|
||||||
|
|
||||||
./mach build
|
if [[ $1 == "--juggler" ]]; then
|
||||||
|
./mach build faster
|
||||||
|
else
|
||||||
|
./mach build
|
||||||
|
fi
|
||||||
|
|
||||||
if [[ "$(uname)" == "Darwin" ]]; then
|
if [[ "$(uname)" == "Darwin" ]]; then
|
||||||
node ../install-preferences.js $PWD/${OBJ_FOLDER}/dist
|
node ../install-preferences.js $PWD/${OBJ_FOLDER}/dist
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue