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
11 lines
244 B
Bash
Executable File
11 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
|