mirror of
https://github.com/Feodor2/Mypal68.git
synced 2025-06-18 23:05:40 -04:00
25 lines
716 B
Bash
25 lines
716 B
Bash
#!/bin/bash
|
|
|
|
set -x
|
|
|
|
source $(dirname $0)/sm-tooltool-config.sh
|
|
|
|
: ${PYTHON3:=python3}
|
|
|
|
# Run the script
|
|
export MOZ_UPLOAD_DIR="$(cd "$UPLOAD_DIR"; pwd)"
|
|
AUTOMATION=1 $PYTHON3 $SRCDIR/js/src/devtools/automation/autospider.py ${SPIDERMONKEY_PLATFORM:+--platform=$SPIDERMONKEY_PLATFORM} $SPIDERMONKEY_VARIANT
|
|
BUILD_STATUS=$?
|
|
|
|
# Ensure upload dir exists
|
|
mkdir -p $UPLOAD_DIR
|
|
|
|
# Copy artifacts for upload by TaskCluster
|
|
cp -rL $SRCDIR/obj-spider/dist/bin/{js,jsapi-tests,js-gdb.py} $UPLOAD_DIR
|
|
|
|
# Fuzzing users would really like to have llvm-symbolizer available in the same
|
|
# directory as the built output.
|
|
gzip -c $MOZ_FETCHES_DIR/clang/bin/llvm-symbolizer > $UPLOAD_DIR/llvm-symbolizer.gz || true
|
|
|
|
exit $BUILD_STATUS
|