forked from mirrors/gecko-dev
These scripts are included by hazard-analysis.sh. That's their only reference in repo. We could probably inline these scripts. But let's start by moving them out of mozharness since no active mozharness based task is using them. MozReview-Commit-ID: 13oen42Txmh --HG-- rename : testing/mozharness/scripts/spidermonkey/build.browser => taskcluster/scripts/builder/hazard-browser.sh rename : testing/mozharness/scripts/spidermonkey/build.shell => taskcluster/scripts/builder/hazard-shell.sh extra : rebase_source : 782f7b3f3537cfefb51b0e5f1b459c8ad0daca5b
10 lines
244 B
Bash
Executable file
10 lines
244 B
Bash
Executable file
#!/bin/bash -e
|
|
|
|
cd $SOURCE
|
|
TOP=$(cd ..; pwd)
|
|
export MOZBUILD_STATE_PATH=$TOP/mozbuild-state
|
|
[ -d $MOZBUILD_STATE_PATH ] || mkdir $MOZBUILD_STATE_PATH
|
|
|
|
export MOZCONFIG=$SOURCE/browser/config/mozconfigs/linux64/hazards
|
|
|
|
exec ./mach build -v -j8
|