This adds a firefox-stable application to build on our bots. This is basically a rebaselined version of66541552d0The firefox base revision isbb9bf7e886Which is taken from `about://buildconfig` of a stable Firefox version on Mac as of Apr 9, 2021. References #5993
19 lines
335 B
Bash
Executable file
19 lines
335 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
set +x
|
|
|
|
trap "cd $(pwd -P)" EXIT
|
|
if [[ ! -z "${FF_CHECKOUT_PATH}" ]]; then
|
|
cd "${FF_CHECKOUT_PATH}"
|
|
echo "WARNING: checkout path from FF_CHECKOUT_PATH env: ${FF_CHECKOUT_PATH}"
|
|
else
|
|
cd "$(dirname $0)"
|
|
cd "checkout"
|
|
fi
|
|
|
|
OBJ_FOLDER="obj-build-playwright"
|
|
if [[ -d $OBJ_FOLDER ]]; then
|
|
rm -rf $OBJ_FOLDER
|
|
fi
|
|
|