blob: d7837d112e6a2783a4d719d3d7e65431d021024e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
#!/bin/bash
set -ex
SHA256SUMS=SHA256SUMS.zip
function get_route()
{
local task_url=${TASKCLUSTER_ROOT_URL}/api/queue/v1/task/${TASK_ID}
local payload
payload=$(curl -sSL "${task_url}")
local route
route=$(echo "${payload}" | jq -r '.routes[] | select(contains("latest")) | select(contains("pushdate") | not) ' | sed -e 's/^index\.//')
echo "${route}"
}
function get_sha256sum_url()
{
local route
route=$(get_route)
local sha256sums_url=${TASKCLUSTER_ROOT_URL}/api/index/v1/task/${route}/artifacts/public/build/${SHA256SUMS}
echo "${sha256sums_url}"
}
function has_sha256sums_on_index()
{
local url
url=$(get_sha256sum_url)
curl -sSL --head --fail -o /dev/null "${url}"
}
function download_verify_extract_sha256sums()
{
local url=$1
if [ ! -f "/builds/worker/SHA256SUMS.txt" ]; then
echo "Missing checksums, aborting."
exit 1
fi
curl -sSL "${url}" -o ${SHA256SUMS}
# We verify SHA256SUMS when we bootstrap and thus download from GitHub
# The one downloaded from TaskCluster will have been updated by previous tasks
if [ -n "${BOOTSTRAP_SHA256}" ]; then
echo "BOOTSTRAP_SHA256 was set, ensuring consistent set of SHA256SUMS"
local sha_check
sha256sum --quiet --status -c <(grep "${DISTRO}/" /builds/worker/SHA256SUMS.txt | sed -e "s/${DISTRO}\///")
sha_check=$?
if [ ${sha_check} -ne 0 ]; then
echo "Checksum verification failed, aborting."
exit 1
fi
fi
unzip ${SHA256SUMS} && rm ${SHA256SUMS}
}
DISTRO=$1
sha256=https://mozilla.github.io/symbol-scrapers/${DISTRO}/${SHA256SUMS}
if [ -z "${BOOTSTRAP_SHA256}" ]; then
if has_sha256sums_on_index; then
sha256=$(get_sha256sum_url)
fi
fi
mkdir -p /builds/worker/artifacts/
pushd "${MOZ_FETCHES_DIR}/symbol-scrapers/${DISTRO}"
download_verify_extract_sha256sums "${sha256}"
DUMP_SYMS=${MOZ_FETCHES_DIR}/dump_syms/dump_syms /bin/bash script.sh
zip -r9 /builds/worker/artifacts/${SHA256SUMS} SHA256SUMS
cp wget*.log /builds/worker/artifacts/
popd
if [ ! -f "/builds/worker/artifacts/target.crashreporter-symbols.zip" ]; then
echo "No symbols zip produced, upload task will fail"
fi
|