blob: a0cc15c5b000cb2575cbb5c7c9d77a6c9484ccfe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#! /bin/bash
set -e
# checkout the script
source $(dirname $0)/checkout-script.sh
# Check that we have a taskid to checkout
if [ -z ${ARTIFACT_TASKID} ]; then
echo "Please set ARTIFACT_TASKID. Exiting"
exit 0
fi
# grab the symbols from an arbitrary task
symbol_url=https://queue.taskcluster.net/v1/task/${ARTIFACT_TASKID}/artifacts/public/build/target.crashreporter-symbols-full.zip
wget ${symbol_url}
# run
symbol_zip=$(basename ${symbol_url})
script_name=$(basename ${SCRIPT_PATH})
python -u ${script_name} ${symbol_zip}
|